forked from SamVerschueren/cordova-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 834 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
{
"name": "cordova-config",
"version": "0.7.0",
"description": "Parse and edit the config.xml file of a cordova project",
"license": "MIT",
"repository": "SamVerschueren/cordova-config",
"author": {
"name": "Sam Verschueren",
"email": "[email protected]"
},
"main": "index.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "xo && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js"
],
"keywords": [
"cordova",
"config",
"xml"
],
"dependencies": {
"elementtree": "^0.1.6",
"pify": "^2.3.0",
"pinkie-promise": "^1.0.0"
},
"devDependencies": {
"ava": "0.16.0",
"coveralls": "^2.11.4",
"fs-extra": "^0.24.0",
"nyc": "^3.2.2",
"tempfile": "^1.1.1",
"xo": "0.16.0"
}
}