forked from ios-control/ios-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "ios-sim",
"version": "5.0.8",
"preferGlobal": "true",
"description": "launch iOS apps into the iOS Simulator from the command line (Xcode 6.0+)",
"main": "ios-sim.js",
"repository": {
"type": "git",
"url": "https://github.com/phonegap/ios-sim"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"ios-sim",
"iOS Simulator"
],
"bin": {
"ios-sim": "./bin/ios-sim"
},
"bugs": {
"url": "https://github.com/phonegap/ios-sim/issues"
},
"author": "Shazron Abdullah",
"license": "MIT",
"dependencies": {
"plist": "^1.2.0",
"simctl": "^0.0.9",
"nopt": "1.0.9",
"bplist-parser": "^0.0.6"
},
"devDependencies": {
"jasmine-node": "^1.14.5",
"jscs": "^2.11.0",
"jshint": "^2.9.1"
},
"scripts": {
"test": "npm run jasmine",
"posttest": "npm run jshint",
"jshint": "jshint src ./ios-sim.js",
"postjshint": "npm run jscs",
"jscs": "jscs src ./ios-sim.js",
"jasmine": "jasmine-node --captureExceptions --color spec"
}
}