-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 873 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
{
"name": "generator-golang-boilerplate",
"version": "1.0.0",
"description": "Yeoman generator for a baseline Golang solution",
"keywords": [
"yeoman-generator",
"golang",
"go"
],
"main": "app/index.js",
"repository": "adamschmidt/generator-golang-boilerplate",
"scripts": {
"test": "istanbul cover _mocha",
"test:watch": "mocha -w",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": {
"name": "Adam Schmidt",
"email": "aschmidt1978@gmail.com",
"url": "https://github.com/adamschmidt"
},
"license": "MIT",
"dependencies": {
"yeoman-generator": "^1.1.1"
},
"files": [
"app"
],
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
}
}