forked from michogar/CordovaConfigWebpackPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "cordova-webpack-config-plugin",
"version": "1.0.0",
"description": "A Webpack plugin to modify config.xml in build",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/michogar/CordovaConfigWebpackPlugin.git"
},
"author": "Micho García <[email protected]>",
"license": "GPLv3",
"scripts": {
"lint": "eslint src/ test/",
"pretest": "npm run lint && npm run build && npm run build:tests",
"test": "mocha compiled_tests/",
"test:nolint": "npm run build && npm run build:tests && mocha compiled_tests/",
"build": "babel src/ --out-dir lib/",
"build:tests": "babel test/ --out-dir compiled_tests/",
"preversion": "npm test",
"version": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.4.2",
"nyc": "^11.0.3"
},
"keywords": [
"webpack",
"plugin",
"config.xml",
"cordova",
"modify"
],
"dependencies": {
"elementtree": "^0.1.7"
}
}