-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
55 lines (55 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
{
"name": "@open-api/open-api",
"version": "0.0.0",
"description": "Various packages to build OpenAPI APIs in node",
"main": "index.js",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"cover": "lerna run cover",
"combine-coverage": "istanbul-combine packages/*/coverage/coverage*.json",
"coveralls": "cat ./coverage/lcov.info | coveralls -v",
"lint": "tslint -c tslint.json './packages/**/*.[j,t]s'",
"test": "lerna run test",
"publish": "lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kogosoftwarellc/open-api.git"
},
"keywords": [
"openapi",
"tools"
],
"author": "Joseph Spencer",
"license": "MIT",
"bugs": {
"url": "https://github.com/kogosoftwarellc/open-api/issues"
},
"homepage": "https://github.com/kogosoftwarellc/open-api#readme",
"devDependencies": {
"@types/mocha": "^7.0.0",
"bluebird": "3.7.2",
"body-parser": "^1.14.2",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cors": "^2.7.1",
"coveralls": "3.0.12",
"express": "^4.13.3",
"glob": "7.1.6",
"istanbul": "0.4.5",
"istanbul-combine": "0.3.0",
"lerna": "^3.22.1",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "^2.0.0",
"source-map-support": "0.5.17",
"supertest": "4.0.1",
"ts-node": "8.8.2",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.7.2"
}
}