-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
54
55
56
{
"name": "cordova-coho",
"version": "2.0.0-dev",
"description": "Apache Cordova release tool",
"main": "./coho",
"bin": {
"coho": "./coho"
},
"dependencies": {
"co": "^4.6.0",
"glob": "^11.0.0",
"inquirer": "^6.3.1",
"jira-client": "4.2.0",
"nlf": "^2.0.1",
"opener": "^1.4.1",
"optimist": "^0.6.1",
"plist": "^3.1.0",
"request": "^2.88.0",
"semver": "^7.6.3",
"shelljs": "^0.8.5",
"tar-fs": "^3.0.6",
"treeify": "^1.0.1",
"which": "^5.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@cordova/eslint-config": "^5.0.0",
"cordova-android": "^13.0.0",
"cordova-browser": "^7.0.0",
"cordova-ios": "^7.0.0",
"jasmine": "^2.5.3",
"jasmine-co": "^1.2.2",
"nyc": "^17.0.0"
},
"scripts": {
"test": "npm run lint && npm run cover",
"cover": "nyc jasmine",
"lint": "eslint ."
},
"nyc": {
"include": [
"src"
],
"reporter": [
"lcov",
"text"
]
},
"repository": "github:apache/cordova-coho",
"bugs": "https://github.com/apache/cordova-coho/issues",
"engines": {
"node": ">=20.12.0"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0"
}