-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "slack-ooo",
"version": "2.1.1",
"description": "Slack Out of Office Message Responder",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "nyc --all tape ./test/*.test.js | faucet && nyc report",
"doc": "jsdoc -c ./.jsdocrc .",
"start": "node index.js",
"lint": "semistandard --verbose | snazzy",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Shaun Burdick <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shaunburdick/slack-ooo.git"
},
"license": "GPL-3.0",
"dependencies": {
"botkit": "^0.2.2",
"chrono-node": "^1.0.8",
"moment": "^2.10.6",
"redact-object": "^2.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"coveralls": "^2.11.12",
"faucet": "0.0.1",
"jsdoc": "^3.4.0",
"nyc": "^8.1.0",
"semistandard": "^9.0.0",
"snazzy": "^4.0.1",
"tape": "^4.6.0"
},
"semistandard": {
"ignore": [
"coverage",
"doc"
]
},
"nyc": {
"include": [
"lib/**/*.js"
]
}
}