-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "slack-app-node-tutorial-oauth",
"version": "1.0.0",
"description": "Node.js Slack Application OAuth Tutorial",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"debug": "nodemon debug server.js",
"test": "lab -L -I fetch",
"test-cover": "lab -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html"
},
"repository": {
"type": "git",
"url": "https://github.com/505aaron/slack-app-node-tutorial-oauth"
},
"author": "Aaron Cordova <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/505aaron/slack-app-node-tutorial-oauth/issues"
},
"homepage": "https://github.com/505aaron/slack-app-node-tutorial-oauth",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"bell": "^8.6.0",
"confidence": "3.x.x",
"glue": "4.x.x",
"hapi": "16.x.x",
"hapi-auth-cookie": "^7.0.0",
"hapi-methods-injection": "^1.1.0",
"hoek": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^10.3.3"
},
"devDependencies": {
"chai": "^3.5.0",
"code": "4.x.x",
"fetch-mock": "^5.9.4",
"lab": "13.x.x",
"nodemon": "1.x.x",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
}
}