-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 KB
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
{
"name": "devicelab-bot",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"author": "Almouro <contact@almouro.com> (almouro.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bamlab/devicelab-bot"
},
"bin": {
"devicelab-bot": "./cli.js"
},
"scripts": {
"start": "babel-node src/server",
"test": "./node_modules/.bin/eslint src && ./node_modules/.bin/flow && ./node_modules/.bin/jest",
"build:cli-tools": "./node_modules/.bin/babel src --ignore src/server --out-dir command-line-dist --copy-files",
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"adbkit": "2.6.1",
"babel-polyfill": "6.16.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"download": "5.0.2",
"express": "4.14.0",
"lodash": "^4.17.4",
"lru-cache": "^4.0.2",
"node-fetch": "1.6.0",
"node-uuid": "1.4.7",
"shelljs": "0.7.5",
"swagger-express": "^1.0.5"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-eslint": "7.1.1",
"babel-preset-react-native": "1.9.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "3.8.0",
"eslint-config-airbnb-base": "8.0.0",
"eslint-plugin-flowtype": "2.25.0",
"eslint-plugin-import": "1.16.0",
"flow-bin": "0.35.0",
"husky": "^0.13.2",
"jest": "^19.0.2",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.11.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}