forked from SamVerschueren/cordova-config
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 984 Bytes
/
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
{
"name": "config-cordova",
"version": "0.8.4",
"description": "Parse and edit the config.xml file of a cordova project",
"license": "MIT",
"repository": "Yoobic/cordova-config",
"author": {
"name": "Yoobic",
"email": "[email protected]"
},
"main": "index.js",
"engines": {
"node": ">=6"
},
"bin": {
"config-cordova": "cli.js"
},
"scripts": {
"test": "xo && nyc ava",
"test:only": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"release": "mcfly-semantic-release"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cordova",
"config",
"xml"
],
"dependencies": {
"elementtree": "^0.1.6",
"semver": "^5.6.0",
"meow": "^5.0.0"
},
"devDependencies": {
"ava": "^1.2.1",
"coveralls": "^3.0.2",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"mcfly-semantic-release": "^1.1.7",
"nyc": "^13.2.0",
"tempy": "^0.2.1",
"xo": "^0.24.0"
}
}