-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"scripts": {
"start": "ts-node --files --pretty src/main.ts",
"dev": "nodemon --ext js,ts --watch './src' --exec npm run start",
"test": "mocha --opts tests/mocha.opts",
"test:lint": "eslint 'src/**/*.ts'",
"test:type-check": "tsc --noEmit"
},
"dependencies": {
"ajv": "^6.5.2",
"bot-commander": "^1.1.1",
"bytes": "^3.0.0",
"compare-versions": "^3.3.0",
"config": "^1.30.0",
"flat": "^4.1.0",
"js-yaml": "^3.12.0",
"jsonpath": "^1.0.0",
"jstream": "^1.1.1",
"jszip": "^3.1.5",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"parse-duration": "^0.1.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"slackbots": "^1.1.0",
"ts-node": "^7.0.0",
"tslib": "^1.9.3",
"typescript": "^2.9.2",
"ws": "^6.0.0"
},
"devDependencies": {
"@types/bytes": "^3.0.0",
"@types/chai": "^4.1.4",
"@types/config": "^0.0.34",
"@types/flat": "0.0.28",
"@types/js-yaml": "^3.11.2",
"@types/jsonpath": "^0.2.0",
"@types/jszip": "^3.1.4",
"@types/lodash": "^4.14.112",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.21",
"@types/request-promise-native": "^1.0.15",
"@types/ws": "^5.1.2",
"chai": "^4.1.2",
"eslint": "^5.2.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-typescript": "^0.12.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"typescript-eslint-parser": "^16.0.1"
}
}