-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.09 KB
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.1-dev.0",
"description": "Cordova command line interface tool",
"main": "cordova",
"engines": {
"node": ">=20.17.0 || >=22.9.0"
},
"bin": {
"cordova": "./bin/cordova"
},
"scripts": {
"test": "npm run lint && npm run cover",
"lint": "eslint .",
"cover": "c8 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": "^6.0.0",
"cordova-create": "^6.0.0",
"cordova-lib": "^13.0.0",
"editor": "^1.0.0",
"execa": "^5.1.1",
"nopt": "^9.0.0",
"semver": "^7.7.3",
"systeminformation": "^5.27.11"
},
"devDependencies": {
"@cordova/eslint-config": "^6.0.0",
"c8": "^10.1.3",
"jasmine": "^5.12.0",
"rewire": "^9.0.1"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"c8": {
"include": [
"bin/**",
"src/**"
],
"reporter": [
"lcov",
"text"
]
}
}