-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "cordova-fetch",
"version": "5.0.1-dev",
"description": "Apache Cordova fetch module. Fetches from git and npm.",
"main": "index.js",
"repository": "github:apache/cordova-fetch",
"bugs": "https://github.com/apache/cordova-fetch/issues",
"keywords": [
"cordova",
"fetch",
"apache",
"ecosystem:cordova",
"cordova:tool"
],
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"dependencies": {
"@npmcli/arborist": "^9.1.3",
"cordova-common": "^6.0.0",
"execa": "^5.1.1",
"npm-package-arg": "^13.0.0",
"pacote": "^21.0.0",
"resolve": "^1.22.10",
"semver": "^7.7.2",
"which": "^5.0.0"
},
"devDependencies": {
"@cordova/eslint-config": "^6.0.0",
"c8": "^10.1.3",
"jasmine": "^5.9.0"
},
"scripts": {
"test": "npm run lint && npm run test:coverage",
"test:coverage": "c8 jasmine",
"lint": "eslint ."
},
"engines": {
"node": ">=20.9.0",
"npm": ">=8.1.0"
},
"c8": {
"include": [
"index.js"
],
"reporter": [
"lcov",
"text"
]
}
}