-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "oatyp",
"version": "1.0.0-alpha.33",
"description": "Build Typescript typings from OpenAPI definitions",
"main": "build/src/index.js",
"repository": "[email protected]:Eywek/oatyp.git",
"author": "Valentin Touffet <[email protected]>",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn build",
"prebuild": "rimraf -rf build",
"build": "tsc --project ./tsconfig.build.json",
"test": "NODE_V8_COVERAGE=./coverage ava",
"posttest": "c8 --all report -x example -x build -x node_modules --temp-directory=./coverage/ --report-dir=./coverage -r json"
},
"bin": {
"oatyp": "./build/cmd/oatyp.js"
},
"dependencies": {
"js-yaml": "^4.1.0",
"openapi-types": "^7.0.1",
"safe-identifier": "^0.4.2",
"ts-morph": "^11.0.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/js-yaml": "^4.0.2",
"@types/node": "^14.14.6",
"@types/yargs": "^15.0.9",
"axios": "^0.21.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.5"
},
"ava": {
"files": [
"tests/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}