-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
{
"name": "specs-generator",
"description": "",
"version": "0.0.4",
"author": "Cuong, Duong <cuong3ihut@gmail.com>",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/opengate-io/specs-generator.git"
},
"bugs": "http://github.com/opengate-io/specs-generator/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"body-parser": "^1.15.0",
"express": "^4.0.0",
"generate-schema": "2.5.1",
"parse-curl": "^0.2.5",
"query-string": "5.0.0",
"request": "2.81.0",
"swagger2openapi": "^2.6.5",
"swaggerize-express": "^4.0.0",
"swagmock": "~0.0.2"
},
"devDependencies": {
"eslint": "^2",
"istanbul": "~0.4.3",
"coveralls": "2.13.1",
"is-my-json-valid": "^2.13.1",
"js-yaml": "^3.2.6",
"supertest": "^1.2.0",
"swagger-parser": "^3.4.1",
"tape": "^4"
},
"bundledDependencies": [
"express",
"body-parser",
"generate-schema",
"parse-curl",
"query-string",
"request",
"swagger2openapi",
"swaggerize-express",
"swagmock"
],
"scripts": {
"test": "npm run cover && cd specs-editor && npm install && npm run test",
"cover": "istanbul cover tape -- 'tests/**/*.js'",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "eslint .",
"tag": "mversion patch -mn 'Tag new version for a release commit'",
"build": "cd specs-editor && npm install && npm run build && cp -rf dist ../public/ && cp -f index.html ../public/",
"regenerate": "yo swaggerize:test --framework express --apiPath './config/swagger.yaml'"
},
"generator-swaggerize": {
"version": "3.1.0"
},
"main": "./server"
}