-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "cordova-browser",
"version": "8.0.0-dev",
"description": "cordova-browser release",
"main": "bin/template/cordova/Api.js",
"repository": "github:apache/cordova-browser",
"bugs": "https://github.com/apache/cordova-browser/issues",
"keywords": [
"cordova",
"browser",
"apache"
],
"scripts": {
"prepare": "cordova-js build > bin/template/www/cordova.js",
"cover": "c8 jasmine",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"jasmine": "jasmine",
"test": "npm run lint && npm run cover"
},
"dependencies": {
"cordova-common": "^6.0.0",
"cordova-serve": "^4.0.1"
},
"devDependencies": {
"@cordova/eslint-config": "^6.0.1",
"c8": "^11.0.0",
"cordova-js": "^6.1.0",
"jasmine": "^6.1.0",
"tmp": "^0.2.5"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"engines": {
"node": "^20.17.0 || >=22.9.0"
},
"c8": {
"include": [
"bin/lib/**",
"bin/templates/cordova/**"
],
"reporter": [
"lcov",
"text"
]
}
}