forked from apache/cordova-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "cordova-ios",
"version": "5.1.1",
"description": "cordova-ios release",
"main": "bin/templates/scripts/cordova/Api.js",
"repository": {
"type": "git",
"url": "https://github.com/apache/cordova-ios"
},
"bugs": {
"url": "https://github.com/apache/cordova-ios/issues"
},
"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": "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",
"eslint": "eslint . \"bin/**/!(*.*)\""
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jasmine": "^3.4.0",
"nyc": "^14.0.0",
"rewire": "^4.0.1",
"tmp": "^0.1.0"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"cordova-common": "^3.1.0",
"ios-sim": "^8.0.1",
"nopt": "^4.0.1",
"plist": "^3.0.1",
"q": "^1.5.1",
"semver": "^6.3.0",
"shelljs": "^0.5.3",
"unorm": "^1.4.1",
"xcode": "^2.0.0",
"xml-escape": "^1.1.0"
},
"nyc": {
"include": [
"bin/templates/scripts/**"
],
"reporter": [
"lcov",
"text"
]
}
}