-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
51 lines (51 loc) · 1 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
{
"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": ">= 18.0.0"
},
"type": "module",
"scripts": {
"pretest": "standard",
"test": "node --test"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"hubot",
"hubot-script"
],
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
},
"dependencies": {
"chalk": "^5.3.0",
"yeoman-generator": "^7.3.2"
},
"devDependencies": {
"standard": "^17.1.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^8.3.0"
}
}