forked from frankgreco/gomicro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "generator-gomicro",
"version": "0.2.0",
"description": "yeoman generator for RESTful microservices written in go",
"keywords": [
"yeoman-generator"
],
"bugs": {
"url": "https://github.com/petrasphere/gomicro/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Frank B Greco Jr",
"email": "[email protected]",
"url": "http://frankgrecojr.com/"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"files": [
"app"
],
"repository": {
"type": "git",
"url": "https://github.com/petrasphere/gomicro"
},
"devDependencies": {
"mocha": "^3.2.0",
"yeoman-test": "^1.6.0",
"yeoman-assert": "^3.0.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"istanbul": "^1.0.0-alpha"
},
"dependencies": {
"left-pad": "^1.1.3",
"pluralize": "^4.0.0",
"yeoman-generator": "^1.1.1",
"command-exists": "^1.2.2",
"selfsigned": "^1.8.0",
"mkdirp": "^0.5.1"
}
}