-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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
52
53
54
55
{
"name": "swagger-seneca-codegen",
"version": "1.0.0",
"description": "A Node.js CLI module that generates boilerplate seneca microservices based on a swagger specification.",
"main": "cli.js",
"scripts": {
"test": "node_modules/.bin/mocha --recursive tests/*tests.js",
"jshint": "node_modules/.bin/jshint index.js",
"coverage": "nyc node_modules/.bin/mocha tests/*tests.js",
"coverage_html": "nyc --reporter=html node_modules/.bin/mocha tests/*tests.js",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmccarthy-dev/swagger-seneca-codegen.git"
},
"keywords": [
"swagger",
"seneca",
"microservices",
"codegen"
],
"author": "Donal McCarthy (https://github.com/dmccarthy-dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmccarthy-dev/swagger-seneca-codegen/issues"
},
"homepage": "https://github.com/dmccarthy-dev/swagger-seneca-codegen#readme",
"dependencies": {
"caporal": "^0.10.0",
"js-yaml": "^3.11.0",
"jsdoc": "^3.5.5",
"jsonic": "^0.3.0",
"mustache": "^2.3.0",
"swagger-tools": "^0.10.3"
},
"files": [
"README.md",
"LICENSE",
"index.js"
],
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"jshint": "^2.9.5",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"rewire": "^4.0.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0"
},
"bin": {
"swagger-seneca-codegen": "./cli.js"
}
}