This repository has been archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.49 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
{
"name": "oas-generator",
"version": "2.1.5",
"description": "OAS code generator",
"main": "src/index.js",
"scripts": {
"test": "mocha ./test/basic.js",
"test:tdd": "mocha ./test/basic.js -w",
"lint": "eslint src/**/*.js test/**/*.js",
"coverage": "nyc npm test",
"start": "node src/index.js",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"author": "Ignacio Peluaga - ISA Group, University of Seville",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/isa-group/oas-generator.git"
},
"bin": {
"oas-generator": "./src/index.js"
},
"dependencies": {
"archiver": "^3.0.0",
"co-prompt": "^1.0.0",
"commander": "^2.16.0",
"fs": "0.0.2",
"js-beautify": "^1.7.5",
"js-yaml": "^3.13.0",
"json2yaml": "^1.1.0",
"lodash-compat": "^3.10.2",
"node-zip": "^1.1.1",
"path": "^0.12.7",
"require-from-url": "^3.1.2",
"rimraf": "^2.6.2",
"semver": "^6.0.0",
"touch": "^3.1.0",
"validator": "^11.0.0",
"winston": "^3.0.0",
"z-schema": "^4.0.0",
"zip-dir": "^1.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^3.0.4",
"eslint": "^5.2.0",
"mocha": "^6.0.0",
"nyc": "^14.1.0",
"publish-please": "^5.0.0",
"sinon": "^7.2.4"
},
"nyc": {
"exclude": [
"node_modules",
"test/**/*.js"
],
"reporter": [
"json",
"html",
"text",
"lcovonly"
]
}
}