forked from mtsmfm/hubot-test-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 891 Bytes
/
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
{
"version": "1.5.0",
"name": "hubot-test-helper",
"description": "Helper for testing hubot script",
"main": "./lib/index.js",
"scripts": {
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha --compilers coffee:coffee-script/register test",
"test-integration": "cd dummy && npm i && npm run test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prepublish": "coffee --compile --output lib/ src/"
},
"keywords": [
"hubot"
],
"dependencies": {
"hubot": ">= 2.6.0 < 3"
},
"devDependencies": {
"chai": "latest",
"co": "latest",
"coffee-script": "latest",
"mocha": "latest",
"semantic-release": "^4.3.5"
},
"author": "Fumiaki MATSUSHIMA",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mtsmfm/hubot-test-helper"
}
}