-
Notifications
You must be signed in to change notification settings - Fork 991
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "cordova-ios",
"version": "5.0.0-dev",
"description": "cordova-ios release",
"main": "bin/templates/scripts/cordova/Api.js",
"repository": {
"type": "git",
"url": "https://github.com/apache/cordova-ios"
},
"bugs": {
"url": "https://issues.apache.org/jira/browse/CB"
},
"keywords": [
"ios",
"cordova",
"apache",
"ecosystem:cordova",
"cordova:platform"
],
"scripts": {
"test": "npm run unit-tests && npm run test:component && npm run objc-tests && npm run e2e-tests",
"test:component": "jasmine --config=tests/spec/component.json",
"posttest": "npm run eslint",
"cover": "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": "xcodebuild test -workspace tests/cordova-ios.xcworkspace -scheme CordovaLibTests -destination \"platform=iOS Simulator,name=iPhone 8\" CONFIGURATION_BUILD_DIR=\"`mktemp -d 2>/dev/null || mktemp -d -t 'cordova-ios'`\"",
"objc-tests-framework": "xcodebuild test -workspace tests/cordova-ios.xcworkspace -scheme CordovaFrameworkApp -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",
"eslint": "eslint bin tests"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^4.0.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jasmine": "~3.1.0",
"nodeunit": "^0.8.7",
"nyc": "^12.0.2",
"rewire": "^4.0.1",
"tmp": "^0.0.26"
},
"engines": {
"node": ">=6"
},
"engineStrict": true,
"dependencies": {
"cordova-common": "2.1.0",
"ios-sim": "^6.1.2",
"nopt": "^3.0.6",
"plist": "^1.2.0",
"q": "^1.4.1",
"shelljs": "^0.5.3",
"xcode": "^0.9.0",
"xml-escape": "^1.1.0"
},
"bundledDependencies": [
"cordova-common",
"ios-sim",
"nopt",
"plist",
"q",
"shelljs",
"xcode",
"xml-escape"
],
"nyc": {
"include": [
"bin/templates/scripts/**"
],
"reporter": [
"lcov",
"text"
]
}
}