-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
42
43
44
{
"name": "appium-adb-repl",
"version": "0.0.5",
"description": "appium-adb REPL",
"main": "./dist/index.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js lib -d dist",
"prepublish": "npm run build",
"start": "./bin/index",
"prestart": "npm run build",
"precommit": "./node_modules/.bin/eslint ./lib",
"lint": "./node_modules/.bin/eslint ./lib",
"prepush": "npm test"
},
"bin": {
"appium-adb-repl": "./bin/index"
},
"keywords": [
"appium",
"adb",
"android",
"repl"
],
"author": "Urucas <[email protected]>",
"license": "MIT",
"dependencies": {
"appium-adb": "^7.10.0",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-runtime": "^6.6.1",
"minimist": "^1.2.0",
"promirepl": "^1.0.1",
"repl": "^0.1.3"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0-beta.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^4.18.2",
"husky": "^0.11.3",
"mocha": "^2.4.5"
}
}