-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.37 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
{
"name": "adbs",
"version": "3.0.0",
"description": "Seamless work with adb for multiple android devices.",
"scripts": {
"prepublishOnly": "yarn lint && yarn test && yarn build",
"cleanDist": "rm dist/ -rf",
"lint": "eslint src --ext ts",
"test": "jest",
"build": "yarn cleanDist && tsc",
"dev": "yarn tsc --watch"
},
"files": [
"dist"
],
"engines": {
"node": ">=6.14.4"
},
"bin": {
"adbs": "dist/cli.js"
},
"homepage": "https://github.com/krizzu/adbs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/krizzu/adbs.git",
"docs": "https://github.com/Krizzu/adbs/blob/master/README.md"
},
"main": "dist/cli.js",
"types": "index.d.ts",
"author": "Krzysztof 'Krizzu' Borowy",
"license": "MIT",
"dependencies": {
"chalk": "^2.3.0",
"execa": "^0.8.0",
"inquirer": "^6.2.0"
},
"devDependencies": {
"@types/inquirer": "^0.0.43",
"@types/jest": "^23.3.5",
"@types/node": "^10.11.7",
"eslint": "^5.4.0",
"eslint-config-krizzu": "^1.0.0",
"jest": "23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}