-
Notifications
You must be signed in to change notification settings - Fork 339
/
package.json
53 lines (53 loc) · 1.09 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
46
47
48
49
50
51
52
53
{
"name": "cordova",
"version": "13.0.0-dev",
"description": "Cordova command line interface tool",
"main": "cordova",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"cordova": "./bin/cordova"
},
"scripts": {
"test": "npm run lint && npm run cover",
"lint": "eslint . bin/cordova",
"cover": "nyc jasmine"
},
"repository": "github:apache/cordova-cli",
"bugs": "https://github.com/apache/cordova-cli/issues",
"keywords": [
"cordova",
"client",
"cli"
],
"dependencies": {
"configstore": "^5.0.1",
"cordova-common": "^5.0.0",
"cordova-create": "^5.0.0",
"cordova-lib": "^12.0.1",
"editor": "^1.0.0",
"execa": "^5.1.1",
"nopt": "^7.2.0",
"semver": "^7.5.4",
"systeminformation": "^5.21.20"
},
"devDependencies": {
"@cordova/eslint-config": "^5.0.0",
"jasmine": "^5.1.0",
"nyc": "^17.0.0",
"rewire": "^7.0.0"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"nyc": {
"include": [
"bin/**",
"src/**"
],
"reporter": [
"lcov",
"text"
]
}
}