-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "slack-jirabot",
"version": "2.3.3",
"description": "Slackbot for interacting with JIRA",
"main": "app.js",
"private": true,
"scripts": {
"start": "node app.js",
"test": "npm run lint && npm run unit",
"unit": "nyc --all tape ./test/*.test.js | faucet && nyc report",
"lint": "semistandard --verbose | snazzy",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Shaun Burdick <github@shaunburdick.com>",
"homepage": "http://github.com/shaunburdick/slack-jirabot",
"repository": {
"type": "git",
"url": "http://github.com/shaunburdick/slack-jirabot.git"
},
"license": "GPL-3.0",
"engine": {
"node": "^4.0.0"
},
"dependencies": {
"botkit": "^0.4.10",
"jira-client": "^3.0.2",
"jira2slack": "^1.0.0",
"moment": "^2.10.3",
"redact-object": "^1.0.1",
"winston": "^2.1.1"
},
"devDependencies": {
"coveralls": "^2.11.9",
"faucet": "0.0.1",
"nyc": "^6.4.0",
"semistandard": "^8.0.0",
"snazzy": "^4.0.0",
"tape": "^4.5.1"
},
"semistandard": {
"ignore": [
"coverage"
]
},
"nyc": {
"include": [
"lib/**/*.js"
]
}
}