forked from exegesis-js/exegesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.36 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "exegesis",
"version": "0.0.0-semantic-release",
"description": "Parses OpenAPI documents",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "npm run build && npm run lint && npm run test:unittest",
"test:pre-commit": "pretty-quick --staged && npm run build && npm run lint && npm run test:unittest-pc",
"build": "tsc",
"clean": "rm -rf lib coverage",
"test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|js)'",
"test:unittest-pc": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|js)'",
"lint": "npm run lint:source && npm run lint:markdown && npm run lint:tests",
"lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
"lint:markdown": "markdownlint **/*.md *.md",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"src/**/*.ts": [
"tslint -c tslint.json -t stylish"
],
"test/**/*.ts": [
"tslint -c test/tslint.json -t stylish"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/exegesis-js/exegesis.git"
},
"keywords": [
"OpenAPI",
"swagger",
"OAS3"
],
"author": "Jason Walton",
"license": "MIT",
"bugs": {
"url": "https://github.com/exegesis-js/exegesis/issues"
},
"homepage": "https://github.com/exegesis-js/exegesis#readme",
"devDependencies": {
"@jwalton/semantic-release-config": "^1.0.0",
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/content-type": "^1.1.3",
"@types/deep-freeze": "^0.1.1",
"@types/glob": "^7.1.1",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.132",
"@types/mocha": "^5.2.6",
"@types/node": "^13.1.0",
"@types/pump": "^1.0.1",
"@types/qs": "^6.5.1",
"@types/semver": "^7.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"husky": "^4.0.2",
"lint-staged": "^10.0.7",
"markdownlint-cli": "^0.18.0",
"mocha": "^6.1.4",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"semantic-release": "^15.13.12",
"supertest-fetch": "^1.2.2",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"ajv": "^6.9.1",
"body-parser": "^1.18.3",
"content-type": "^1.0.4",
"deep-freeze": "0.0.1",
"events-listener": "^1.1.0",
"glob": "^7.1.3",
"json-ptr": "^1.1.1",
"json-schema-ref-parser": "^7.0.0",
"json-schema-traverse": "^0.4.1",
"lodash": "^4.17.11",
"openapi3-ts": "^1.2.0",
"promise-breaker": "^5.0.0",
"pump": "^3.0.0",
"qs": "^6.6.0",
"raw-body": "^2.3.3",
"semver": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:pre-commit"
}
},
"engines": {
"node": ">=6.0.0",
"npm": ">5.0.0"
}
}