-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
62
63
{
"name": "cwt-echo-bot",
"version": "0.0.1-mvp",
"license": "MIT",
"private": true,
"dependencies": {
"boom": "7.2.0",
"bunyan": "1.8.12",
"chalk": "2.4.1",
"ciscospark-webhook-validator": "1.0.0",
"co-body": "6.0.0",
"config": "2.0.1",
"dataloader": "1.4.0",
"debug": "3.1.0",
"express": "4.16.3",
"http-shutdown": "1.2.0",
"inquirer": "6.0.0",
"ioredis": "3.2.2",
"joi": "13.5.2",
"jsonwebtoken": "8.3.0",
"koa-omnibus": "0.9.3",
"koa-router": "7.4.0",
"koa-static": "5.0.0",
"lodash": "4.17.10",
"lru-cache": "4.1.3",
"node-fetch": "2.2.0",
"uuid": "3.3.2"
},
"devDependencies": {
"eslint": "5.2.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-mocha": "5.1.0",
"eslint-plugin-node": "7.0.1",
"mocha": "5.2.0",
"ngrok": "3.0.1",
"nodemon": "1.18.3",
"nyc": "12.0.2",
"serve": "9.4.0",
"supertest": "3.1.0"
},
"engines": {
"node": ">=8.2.0"
},
"scripts": {
"bot": "nodemon --config config/nodemon.json bot/server.js | bunyan",
"config": "node config",
"predocker": "docker build . -t cwt-echo-bot",
"docker": "docker run -d -p ${EXPOSE:-8080}:8080 cwt-echo-bot",
"postdocker": "docker logs -f $(docker ps -lq)",
"precoverage": "nyc -- npm run mocha",
"coverage": "nyc report --reporter html",
"postcoverage": "nyc check-coverage --lines 0",
"eslint": "eslint bot config test",
"mocha": "mocha test/**/*.spec.js",
"prereport": "npm run eslint -- --fix",
"report": "npm run coverage",
"postreport": "npm run eslint -- --max-warnings 0",
"server": "nodemon --config config/nodemon.json test/server.js | bunyan",
"start": "npm run server",
"test": "npm run report",
"tunnel": "node bot/webhooks.js"
}
}