-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
123 lines (123 loc) · 3.11 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
116
117
118
119
120
121
122
123
{
"name": "ionic-native-http-connection-backend",
"version": "11.0.1",
"description": "A solution to CORS problem with Ionic and WKWebView",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"ngcc": "ngcc --properties es2015 browser module main --async false",
"build": "npx rimraf aot dist && npm run ngcc && ngc",
"commit": "git-cz",
"semantic-release": "semantic-release",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/sneas/ionic-native-http-connection-backend.git"
},
"keywords": [
"ionic",
"ionic3",
"wk-web-view",
"cors"
],
"author": "Dmytro 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": "^12.0.1",
"@angular/compiler": "^12.0.1",
"@angular/compiler-cli": "^12.0.1",
"@angular/core": "^12.0.1",
"@angular/forms": "^12.0.1",
"@angular/platform-browser": "^12.0.1",
"@angular/router": "^12.0.1",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@awesome-cordova-plugins/core": "^6.0.1",
"@awesome-cordova-plugins/http": "^6.0.1",
"@ionic/angular": "^5.6.7",
"@ionic/core": "^5.6.7",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.4",
"core-js": "^3.12.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"rxjs": "^7.1.0",
"semantic-release": "^19.0.5",
"ts-jest": "^26.5.6",
"typescript": "~4.2.4",
"zone.js": "^0.11.4"
},
"peerDependencies": {
"@angular/core": ">=12.0.1",
"@awesome-cordova-plugins/http": "^6.0.1"
},
"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": {
"tsconfig": "tsconfig.test.json",
"diagnostics": true
}
},
"setupFilesAfterEnv": [
"<rootDir>/jest.init.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!@ionic)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branches": "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}"
}
]
}
}