forked from hubotio/generator-hubot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "generator-hubot",
"version": "0.0.0-development",
"description": "Hubot generator for Yeoman",
"license": "MIT",
"main": "generators/app/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hubotio/generator-hubot.git"
},
"bugs": {
"url": "https://github.com/hubotio/generator-hubot/issues"
},
"author": {
"name": "Josh Nichols",
"email": "[email protected]",
"url": "https://github.com/technicalpickles"
},
"engines": {
"node": "> 4.0.0"
},
"scripts": {
"pretest": "standard",
"test": "mocha --reporter spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"hubot",
"hubot-script"
],
"dependencies": {
"yeoman-generator": "^0.17.0",
"chalk": "^0.5.0",
"npm-name": "^1.0.1"
},
"devDependencies": {
"mocha": "^3.4.2",
"semantic-release": "^15.9.6",
"standard": "^11.0.1"
}
}