-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 KB
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
{
"name": "gamebot",
"version": "0.2.3",
"description": "Slackbot for playing games",
"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",
"coverage-report": "nyc report --reporter=html && open coverage/index.html"
},
"contributors": [
"Shaun Burdick <github@shaunburdick.com>",
"Trevor Nowalk",
"Glenn Allen"
],
"homepage": "http://github.com/shaunburdick/gamebot",
"repository": {
"type": "git",
"url": "http://github.com/shaunburdick/gamebot.git"
},
"license": "GPL-3.0",
"engine": {
"node": "^5.1.0"
},
"dependencies": {
"async": "^2.0.0-rc.3",
"botkit": "^0.2.0",
"firebase": "^2.4.2",
"jfs": "^0.2.6",
"moment": "^2.10.3",
"redact-object": "^1.0.1",
"request": "^2.71.0",
"winston": "^2.1.1",
"xml2js": "^0.4.16"
},
"devDependencies": {
"coveralls": "^2.11.9",
"faucet": "0.0.1",
"firebase-server": "^0.5.4",
"nock": "^8.0.0",
"nyc": "^6.4.0",
"semistandard": "^8.0.0",
"snazzy": "^4.0.0",
"tape": "^4.5.1"
},
"semistandard": {
"ignore": [
"coverage"
]
},
"nyc": {
"include": [
"lib/**/*.js"
]
}
}