-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 928 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "generator-go",
"version": "0.1.5",
"description": "A yeoman generator to scaffold a simple functionnal golang app",
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"scaffold",
"golang",
"app",
"boilerplate",
"go"
],
"dependencies": {
"yeoman-generator": "^3.2.0"
},
"engines": {
"node": ">=6.9.0"
},
"author": {
"name": "Benjamin Chenebault",
"email": "[email protected]",
"url": "http://benjaminchenebault.net"
},
"contributors": [
{
"name": "Randy Lebeau",
"email": "[email protected]",
"url": "http://github.com/supremetechnopriest"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bench/generator-go"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5"
}
}