forked from sneas/ionic-native-http-connection-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ionic-native-http-connection-backend",
"version": "5.0.2",
"description": "A solution to CORS problem with Ionic and WKWebView",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"test": "jest",
"semantic-release": "semantic-release",
"build": "rimraf aot dist && ngc",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/sneas/ionic-native-http-connection-backend.git"
},
"keywords": [
"ionic",
"ionic3",
"wk-web-view",
"cors"
],
"author": "Dima Snisarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/sneas/ionic-native-http-connection-backend/issues"
},
"homepage": "https://github.com/sneas/ionic-native-http-connection-backend#readme",
"devDependencies": {
"@angular/common": "^6.1.9",
"@angular/compiler": "^6.1.9",
"@angular/compiler-cli": "^6.1.9",
"@angular/core": "^6.1.9",
"@angular/forms": "^6.1.9",
"@angular/http": "^6.1.9",
"@angular/platform-browser": "^6.1.9",
"@ionic-native/core": "^5.0.0-beta.21",
"@ionic-native/http": "^5.0.0-beta.21",
"@ionic/angular": "^4.0.0-beta.12",
"@ionic/core": "^4.0.0-beta.12",
"@semantic-release/git": "^7.0.4",
"@types/jest": "^23.3.3",
"babel-jest": "^23.6.0",
"commitizen": "^2.10.1",
"core-js": "^2.5.7",
"cz-conventional-changelog": "^2.1.0",
"husky": "0.14.3",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rxjs": "^6.3.3",
"semantic-release": "^15.9.17",
"ts-jest": "^23.10.3",
"typescript": "^2.9.2",
"zone.js": "^0.8.26"
},
"peerDependencies": {
"@ionic-native/http": "^5.0.0-beta.21"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
"^.+\\.(ts|js|html)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"html",
"json"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json"
}
},
"setupTestFrameworkScriptFile": "<rootDir>/jest.init.ts",
"transformIgnorePatterns": [
"node_modules/(?!@ionic)"
]
},
"lint-staged": {
"src/**/*.ts": [
"prettier --single-quote --trailing-comma all --tab-width 4 --write",
"git add"
]
},
"publishConfig": {
"tag": "next"
},
"release": {
"branch": "master",
"prepare": [
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"dependencies": {
"@angular/router": "^6.1.9"
}
}