forked from TechNottingham/hubot-hackbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hubot-hackbot",
"version": "2.1.0",
"author": "Andrew Seward <[email protected]>",
"license": "GPL-3.0",
"contributors": [
"David Wood <[email protected]> (http://codesleuth.co.uk/)",
"Joshua Hawxwell <[email protected]> (http://hawx.me/)"
],
"description": "Hackbot is here to help you hack",
"scripts": {
"clean": "rimraf build",
"lint": "tslint -c src/tslint.json -e \"src/**/*.d.ts\" \"src/**/*.ts\"",
"prebuild": "npm run lint && npm run clean",
"build": "tsc -p src",
"test": "mocha -R dot --compilers coffee:coffee-script/register --require source-map-support/register --recursive build",
"prepublish": "npm run build && npm test"
},
"main": "build/index.js",
"engines": {
"node": ">=6.9"
},
"repository": {
"type": "git",
"url": "https://github.com/TechNottingham/hubot-hackbot"
},
"dependencies": {
"body-parser": "^1.17.1",
"hubot-slack": "^4.3.3",
"slug": "^0.9.1",
"source-map-support": "^0.4.11",
"yayson": "^2.0.3"
},
"devDependencies": {
"@types/body-parser": "^1.16.0",
"@types/chai": "^3.4.35",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.40",
"@types/node": "^6.0.65",
"@types/sinon": "^1.16.35",
"@types/sinon-chai": "^2.7.27",
"@types/yayson": "^2.0.1",
"chai": "^3.5.0",
"coffee-script": "^1.12.4",
"express": "^4.15.2",
"hubot-test-helper": "^1.5.1",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"scoped-http-client": "^0.11.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"keywords": [
"hubot",
"hack24",
"hackbot",
"technottingham"
],
"bugs": {
"url": "https://github.com/TechNottingham/hubot-hackbot/issues"
}
}