-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
61
62
63
64
65
66
67
{
"name": "openapi-generator",
"version": "0.1.39",
"description": "",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"openapi-generator": "./bin/index.js"
},
"files": [
"lib/**/*.njk",
"lib/**/*.js",
"bin/**/*.js",
"**/*.d.ts"
],
"scripts": {
"clean": "rimraf -- dist lib/**/*.js lib/**/*.js.map lib/**/*.d.ts",
"rmjsmap": "rimraf -- **/*.js.map ./*.js.map test/*.js.map scripts/*.js.map",
"test": "rimraf -- test/**/*.js && tsc && ava -v -s && npm run rmjsmap",
"test:prod": "tsc && npm run test",
"coverage": "nyc npm test",
"coverage:report": "nyc report --reporter=lcov",
"coverage:upload": "cat ./coverage/lcov.info | coveralls",
"report": "npm run coverage && npm run coverage:report",
"reinstall": "rimraf -- node_modules && npm install",
"prepublish": "npm run clean && npm run test:prod",
"postpublish": "node scripts/published.js"
},
"ava": {
"files": [
"test/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhang740/openapi-generator.git"
},
"author": "zhang740",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhang740/openapi-generator/issues"
},
"homepage": "https://github.com/zhang740/openapi-generator#readme",
"dependencies": {
"@types/nunjucks": "^3.1.0",
"@types/request": "^2.48.0",
"colorful": "^2.1.0",
"commander": "^2.19.0",
"debug": "^4.1.0",
"nunjucks": "^3.1.3",
"openapi3-ts": "^1.1.0",
"request": "^2.88.0",
"swagger2openapi": "^5.3.1",
"tslib": "^1.9.3"
},
"keywords": [],
"devDependencies": {
"@types/node": "^10.7.1",
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"tslint": "5.11.0",
"typescript": "^3.0.1",
"webpack": "^4.17.0"
}
}