-
Notifications
You must be signed in to change notification settings - Fork 987
/
package.json
62 lines (62 loc) · 1.86 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
57
58
59
60
61
62
{
"name": "cordova-ios",
"version": "8.0.0-beta.1",
"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 coverage && npm run objc-tests",
"coverage": "nyc jasmine --config=tests/spec/coverage.json",
"e2e-tests": "jasmine tests/spec/create.spec.js",
"objc-tests": "npm run objc-tests-lib && npm run objc-tests-framework",
"objc-tests-lib": "npm run xcodebuild -- -scheme CordovaLibTests",
"objc-tests-framework": "npm run xcodebuild -- -scheme CordovaFrameworkApp",
"xcodebuild": "xcodebuild -quiet test -workspace tests/cordova-ios.xcworkspace -destination \"platform=iOS Simulator,name=iPhone 15\" -derivedDataPath \"`mktemp -d 2>/dev/null || mktemp -d -t 'cordova-ios'`\"",
"preobjc-tests": "killall Simulator || true",
"unit-tests": "jasmine --config=tests/spec/unit.json",
"lint": "eslint . \"templates/cordova/lib/!(*.*)\""
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"devDependencies": {
"@cordova/eslint-config": "^5.1.0",
"cordova-js": "^6.1.0",
"jasmine": "^5.2.0",
"nyc": "^17.0.0",
"rewire": "^7.0.0",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"cordova-common": "^5.0.0",
"execa": "^5.1.1",
"ios-sim": "^8.0.2",
"plist": "^3.0.6",
"semver": "^7.4.0",
"which": "^4.0.0",
"xcode": "^3.0.1",
"elementtree": "^0.1.7"
},
"nyc": {
"include": [
"lib/**"
],
"reporter": [
"lcov",
"text"
]
}
}