forked from Urucas/appium-running
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "appium-running",
"version": "0.1.5",
"description": "Checks if appium is running, answers YES or NO",
"repository": "https://github.com/Urucas/appium-running",
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/* --compilers js:babel-core/register -t 15s -R nyan",
"start": "node cli.js",
"build": "./node_modules/babel-cli/bin/babel.js lib -d dist && cp cli.js ./dist",
"prepublish": "npm run build"
},
"keywords": [
"appium"
],
"engines": {
"node": ">=0.10.0"
},
"main": "./dist/index.js",
"author": {
"name": "Urucas",
"email": "hello@urucas.com",
"url": "http://urucas.com"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"colors": "^1.0.3",
"request": "^2.47.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.1.0",
"mocha-clean": "^0.4.0",
"mocha": "^2.5.3",
"nock": "^8.0.0"
}
}