-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
46 lines (46 loc) · 978 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
{
"author": "Apache Software Foundation",
"name": "plugman",
"description": "install/uninstall Cordova plugins",
"version": "4.0.0-dev",
"repository": "github:apache/cordova-plugman",
"bugs": "https://github.com/apache/cordova-plugman/issues",
"main": "plugman.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"cordova-lib": "^10.0.0",
"loud-rejection": "^2.2.0",
"nopt": "^5.0.0",
"p-each-series": "^2.2.0",
"p-try": "^2.2.0"
},
"devDependencies": {
"@cordova/eslint-config": "^3.0.0",
"jasmine": "^3.9.0",
"nyc": "^15.1.0",
"rewire": "^5.0.0"
},
"bin": {
"plugman": "./bin.js"
},
"scripts": {
"test": "npm run lint && npm run test:coverage",
"test:coverage": "nyc jasmine",
"lint": "eslint ."
},
"license": "Apache-2.0",
"nyc": {
"all": true,
"exclude": [
"bin.js",
"coverage/",
"spec/"
],
"reporter": [
"lcov",
"text"
]
}
}