-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "routing-controllers-openapi",
"version": "4.0.0",
"description": "Runtime OpenAPI v3 spec generation for routing-controllers",
"keywords": [
"routing-controllers",
"class-validator",
"openapi",
"swagger"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "git@github.com:epiphone/routing-controllers-openapi",
"author": "Aleksi Pekkala <aleksipekkala@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rimraf coverage build",
"build": "npm run clean && tsc -p tsconfig.release.json",
"format": "prettier --write {src,__tests__}/**/*.ts",
"test:format": "prettier --check {src,__tests__}/**/*.ts",
"test:lint": "tslint --project . src/**/*.ts",
"prepare": "npm run build",
"send-coverage": "codecov -f coverage/*.json",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"lodash.capitalize": "^4.2.1",
"lodash.merge": "^4.6.2",
"lodash.startcase": "^4.4.0",
"openapi3-ts": "^2.0.2",
"path-to-regexp": "^6.2.1",
"reflect-metadata": "^0.1.13",
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/lodash.capitalize": "^4.2.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.startcase": "^4.4.6",
"@types/node": "^16.18.3",
"@types/prettier": "^2.2.2",
"@types/reflect-metadata": "^0.1.0",
"@types/rimraf": "^3.0.0",
"@types/validator": "^13.7.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"class-validator-jsonschema": "^3.1.1",
"codecov": "^3.8.1",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.9.3"
},
"peerDependencies": {
"routing-controllers": "^0.10.0"
}
}