-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
126 lines (126 loc) · 3.51 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
124
125
126
{
"name": "cordova-plugin-webpack",
"version": "1.0.5",
"description": "Cordova Webpack Plugin",
"files": [
"dist",
"plugin.xml"
],
"cordova": {
"id": "cordova-plugin-webpack",
"platforms": [
"android",
"ios",
"browser"
]
},
"scripts": {
"upgrade-interactive": "npm-check --update",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"precommit": "lint-staged",
"prepare": "npm run build",
"build": "rimraf dist/* && tsc && webpack",
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"commit": "commit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && cordova-set-version plugin.xml && git add CHANGELOG.md plugin.xml",
"github-release": "conventional-github-releaser -p angular -r 0"
},
"repository": {
"type": "git",
"url": "https://github.com/kotarella1110/cordova-plugin-webpack.git"
},
"keywords": [
"cordova",
"webpack",
"ecosystem:cordova",
"cordova-browser",
"cordova-android",
"cordova-ios"
],
"author": "Kotaro Sugawara",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kotarella1110/cordova-plugin-webpack/issues"
},
"homepage": "https://github.com/kotarella1110/cordova-plugin-webpack#readme",
"dependencies": {
"@sindresorhus/is": "^4.0.1",
"create-html": "^4.1.0",
"csp-parse": "0.0.2",
"current-device": "^0.10.1",
"elementtree": "^0.1.7",
"express": "^4.17.1",
"glob": "^7.1.7",
"is-ua-webview": "^1.0.5",
"react-dev-utils": "^11.0.4",
"source-map-support": "^0.5.19",
"supports-color": "^8.1.1",
"webpack-inject-plugin": "^1.5.5",
"yargs": "^16.2.0",
"yargs-unparser": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt-cli": "^12.1.4",
"@types/elementtree": "^0.1.1",
"@types/jest": "^26.0.24",
"@types/node": "^15.6.2",
"@types/react-dev-utils": "^9.0.7",
"@types/supports-color": "^8.1.1",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-server": "^3.11.5",
"@types/yargs": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"all-contributors-cli": "^6.20.0",
"clean-webpack-plugin": "^3.0.0",
"conventional-changelog-cli": "^2.1.1",
"conventional-github-releaser": "^3.1.5",
"cordova-set-version": "^12.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"install": "^0.13.0",
"jest": "^25.5.4",
"lint-staged": "^11.1.0",
"npm-check": "^5.9.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"ts-loader": "^8.3.0",
"ts-node": "^10.1.0",
"typescript": "^3.9.10",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint:fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
}
}