forked from apache/cordova-plugman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 750 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 750 Bytes
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
{
"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": "^1.6.0",
"nopt": "^4.0.1",
"p-each-series": "^1.0.0",
"p-try": "^2.2.0"
},
"devDependencies": {
"@cordova/eslint-config": "^2.0.0",
"jasmine": "^3.3.1",
"rewire": "^4.0.1"
},
"bin": {
"plugman": "./main.js"
},
"scripts": {
"test": "npm run lint && jasmine",
"lint": "eslint ."
},
"license": "Apache-2.0"
}