forked from oas-tools/oas-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.6 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": "oas-tools",
"version": "2.1.8",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "mocha ./tests/basic.js",
"test:tdd": "mocha ./tests/basic.js -w",
"lint": "eslint src/**/*.js Gruntfile.js tests/**/*.js",
"coverage": "nyc mocha ./tests/basic.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"author": "ISA Group, University of Seville",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/isa-group/oas-tools.git"
},
"dependencies": {
"accesscontrol": "^2.2.1",
"accesscontrol-middleware": "^1.0.3",
"body-parser": "^1.18.3",
"fs": "0.0.2",
"js-yaml": "^3.13.1",
"json-schema-deref": "^0.5.0",
"json-schema-deref-sync": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"lodash-compat": "^3.10.2",
"multer": "^1.4.1",
"path": "^0.12.7",
"request": "^2.88.0",
"validator": "^13.0.0",
"whatwg-mimetype": "^2.3.0",
"winston": "^3.2.1",
"z-schema": "^4.2.0",
"snyk": "^1.342.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"codecov": "^3.7.1",
"eslint": "^6.2.2",
"express": "^4.16.4",
"http": "0.0.0",
"jsdoc": "^3.6.3",
"mocha": "^7.0.1",
"mongoose": "^5.7.5",
"nyc": "^15.0.0",
"publish-please": "^5.5.1"
},
"snyk": true,
"nyc": {
"exclude": [
"node_modules",
"tests/**/*.js"
],
"reporter": [
"json",
"html",
"text",
"lcovonly"
]
}
}