-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.63 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
54
55
56
57
58
59
60
{
"name": "cordova-ios",
"version": "8.2.0-dev.0",
"description": "cordova-ios release",
"types": "./types/index.d.ts",
"main": "lib/Api.js",
"repository": "github:apache/cordova-ios",
"bugs": "https://github.com/apache/cordova-ios/issues",
"keywords": [
"ios",
"cordova",
"apache",
"ecosystem:cordova",
"cordova:platform"
],
"scripts": {
"prepare": "cordova-js build > templates/project/www/cordova.js",
"pretest": "npm run lint",
"test": "npm run cover && npm run test:xcode",
"test:unit": "jasmine --config=tests/spec/unit.json",
"test:xcode": "xcodebuild -quiet test -workspace tests/cordova-ios.xcworkspace -scheme CordovaTestApp -destination \"platform=iOS Simulator,name=${CDV_IOS_SIM:-iPhone 17}\" -destination-timeout 300 -derivedDataPath \"`mktemp -d 2>/dev/null || mktemp -d -t 'cordova-ios'`\"",
"cover": "c8 npm run test:unit",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"devDependencies": {
"@cordova/eslint-config": "^6.0.0",
"c8": "^12.0.0",
"cordova-js": "^6.1.0",
"jasmine": "^7.0.0",
"rewire": "^9.0.1",
"tmp": "^0.2.5"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
},
"dependencies": {
"bplist-parser": "^0.3.2",
"cordova-common": "^6.0.0",
"elementtree": "^0.1.7",
"execa": "^5.1.1",
"nopt": "^9.0.0",
"plist": "^3.1.0",
"semver": "^7.7.3",
"simctl": "^3.0.0",
"which": "^6.0.0",
"xcode": "^3.0.1"
},
"c8": {
"include": [
"lib/**"
],
"reporter": [
"lcov",
"text"
]
}
}