forked from RedHatInsights/insights-slackbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "insights-slackbot",
"version": "1.0.0",
"description": "Slackbot for Red Hat Insights",
"homepage": "https://access.redhat.com/insights",
"main": "server.js",
"repository": {
"type": "git",
"url": "[email protected]:RedHatInsights/insights-slackbot.git"
},
"scripts": {
"lint": "./node_modules/jscs/bin/jscs app server.js && ./node_modules/jshint/bin/jshint app server.js",
"nsp": "./node_modules/nsp/bin/nsp check",
"test": "./node_modules/mocha/bin/mocha '**/*.unit.js'",
"verify": "npm run lint && npm test && npm run nsp"
},
"pre-push": [
"lint",
"nsp",
"test"
],
"license": "MIT",
"author": {
"name": "Jozef Hartinger",
"email": "[email protected]",
"url": "https://github.com/jharting"
},
"dependencies": {
"@slack/client": "3.13.0",
"bluebird": "^3.5.1",
"body-parser": "1.18.2",
"bunyan": "1.8.12",
"express": "4.16.0",
"lodash": "4.17.4"
},
"devDependencies": {
"jscs": "3.0.7",
"jshint": "2.9.5",
"mocha": "3.5.3",
"nsp": "2.8.0",
"pre-push": "0.1.1",
"should": "13.0.1"
}
}