-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "node-isimulator",
"version": "1.1.0",
"description": "use node.js to control iOS simulator",
"main": "./lib/index.js",
"scripts": {
"compile": "rm -rf lib && babel -d lib src",
"compile:watch": "npm run compile -- --watch",
"lint": "eslint src test",
"test": "nyc --reporter=lcov --reporter=text ava",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"concurrency": 1,
"require": "babel-register",
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "https://github.com/pigcan/node-isimulator.git"
},
"keywords": [
"iOS",
"Simulator",
"ios-sim"
],
"author": "pigcan",
"license": "MIT",
"bugs": {
"url": "https://github.com/pigcan/node-isimulator/issues"
},
"homepage": "https://github.com/pigcan/node-isimulator",
"dependencies": {
"appium-ios-simulator": "^2.5.0",
"async": "^2.0.0-rc.6",
"babel-runtime": "^6.9.2",
"bplist-parser": "^0.1.1",
"chalk": "^2.2.2",
"download": "^6.2.5",
"node-simctl": "^3.4.2",
"sync-exec": "^0.6.2"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^8.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^17.0.0",
"expect.js": "^0.3.1",
"nyc": "^11.2.1",
"rimraf": "^2.5.2"
},
"files": [
"lib",
"package.json",
"README.md"
]
}