-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "hubot-circuit",
"version": "1.0.3",
"description": "A Circuit adapter for hubot",
"main": "src/circuit.coffee",
"scripts": {
"test": "coffeelint src/circuit.coffee && mocha -c --full-trace --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul --reporter spec test/*.coffee && istanbul report text-summary lcov",
"coveralls": "istanbul report text-summary lcov && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Unify Inc.",
"license": "Apache-2.0",
"contributors": [
"Bettina Topali <[email protected]>",
"Eleni Dimitropoulou <[email protected]>",
"Theodoros Psychogios <[email protected]>"
],
"engines": {
"node": ">= 4.8.4"
},
"repository": {
"type" : "git",
"url" : "https://github.com/circuit/hubot-circuit.git"
},
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"parent-require": "^1.0.0",
"request": "^2.81.0"
},
"peerDependencies": {
"hubot": ">=2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coffee-coverage": "^2.0.0",
"coffee-script": "^1.12.5",
"coffeelint": "^1.16.0",
"coveralls": "^2.13.1",
"hubot": "^2.19.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"proxyquire": "^1.7.11",
"sinon": "~2.1.0",
"sinon-chai": "^2.9.0",
"supertest": "^3.0.0"
}
}