-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "express-openapi-typer",
"version": "0.0.2",
"description": "Code-generation-free conversion of OpenAPI schema into typed Express request handlers",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint --project .",
"prepare": "install-self-peers -- --ignore-scripts && yarn build",
"test": "echo TODO"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/epiphone/express-openapi-typer.git"
},
"keywords": [
"express",
"openapi",
"typescript",
"swagger"
],
"author": "Aleksi Pekkala <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiphone/express-openapi-typer/issues"
},
"homepage": "https://github.com/epiphone/express-openapi-typer#readme",
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"json-schema-type-mapper": "^0.0.2",
"json-schema-typed": "^7.0.3"
},
"peerDependencies": {
"@types/express": "^4.17.2",
"@types/express-serve-static-core": "^4.17.0",
"express": "^4.17.1"
},
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.3"
}
}