-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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-create",
"version": "6.0.1-dev",
"description": "Apache Cordova create module. Creates new project from default or template",
"main": "index.js",
"repository": "github:apache/cordova-create",
"bugs": "https://github.com/apache/cordova-create/issues",
"keywords": [
"cordova",
"create",
"apache",
"ecosystem:cordova",
"cordova:tool"
],
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"engines": {
"node": ">=20.17.0 || >=22.9.0"
},
"dependencies": {
"cordova-app-hello-world": "^7.0.0",
"cordova-common": "^6.0.0",
"cordova-fetch": "^5.0.0",
"globby": "^11.1.0",
"import-fresh": "^3.3.1",
"isobject": "^4.0.0",
"npm-package-arg": "^13.0.0",
"path-is-inside": "^1.0.2",
"tmp": "^0.2.5",
"valid-identifier": "0.0.2"
},
"devDependencies": {
"@cordova/eslint-config": "^6.0.0",
"c8": "^10.1.3",
"jasmine": "^5.10.0",
"rewire": "^9.0.1"
},
"scripts": {
"test": "npm run lint && npm run cover",
"lint": "eslint .",
"jasmine": "jasmine \"spec/**/*.spec.js\"",
"cover": "c8 npm run jasmine"
},
"c8": {
"include": [
"index.js"
],
"reporter": [
"lcov",
"text"
]
}
}