This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
forked from apache/cordova-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.89 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
63
{
"name": "cordova-ios",
"version": "6.3.0-dev",
"description": "cordova-ios release",
"main": "bin/templates/scripts/cordova/Api.js",
"repository": "github:apache/cordova-ios",
"bugs": "https://github.com/apache/cordova-ios/issues",
"keywords": [
"ios",
"cordova",
"apache",
"ecosystem:cordova",
"cordova:platform"
],
"scripts": {
"pretest": "npm run lint",
"test": "npm run coverage && npm run objc-tests",
"test:component": "jasmine --config=tests/spec/component.json",
"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 8\" CONFIGURATION_BUILD_DIR=\"`mktemp -d 2>/dev/null || mktemp -d -t 'cordova-ios'`\"",
"preobjc-tests": "tests/scripts/killsim.js",
"unit-tests": "jasmine --config=tests/spec/unit.json",
"lint": "eslint . \"bin/**/!(*.*)\""
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"devDependencies": {
"@cordova/eslint-config": "^3.0.0",
"find-process": "^1.4.4",
"jasmine": "3.5.0",
"nyc": "^15.0.1",
"rewire": "^5.0.0",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"cordova-common": "^4.0.2",
"fs-extra": "^9.1.0",
"ios-sim": "^8.0.2",
"nopt": "^5.0.0",
"plist": "^3.0.1",
"semver": "^7.3.4",
"unorm": "^1.6.0",
"which": "^2.0.2",
"xcode": "^3.0.1",
"xml-escape": "^1.1.0"
},
"nyc": {
"include": [
"bin/templates/scripts/**"
],
"reporter": [
"lcov",
"text"
]
}
}