-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "typoa",
"version": "1.0.0-alpha.49",
"description": "Help you generate OpenAPI definitions via Typescript",
"main": "build/index.js",
"files": [
"build/"
],
"author": "Eywek <[email protected]>",
"scripts": {
"prepublishOnly": "yarn build",
"prebuild": "rm -rf build",
"build": "tsc --project ./tsconfig.build.json",
"postbuild": "mkdir build/template/ && cp src/template/express.ts.hbs build/template/express.ts.hbs",
"test": "NODE_V8_COVERAGE=./coverage ava",
"posttest": "c8 --all report -x example -x build -x src/types.ts -x tests -x src/runtime/decorators.ts -x node_modules --temp-directory=./coverage/ --report-dir=./coverage -r json",
"lint": "tslint --fix --project ."
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/glob": "^7.1.3",
"@types/node": "^14.14.6",
"@types/yamljs": "^0.2.31",
"ava": "^3.13.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"c8": "^7.3.5",
"express": "^4.17.1",
"openapi-types": "^7.0.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"typescript": "^5.4.5"
},
"dependencies": {
"debug": "^4.2.0",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"ts-morph": "^23.0.0",
"yamljs": "^0.3.0"
},
"ava": {
"files": [
"tests/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}