-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "swagger-to-io-ts",
"version": "0.1.1",
"description": "Generate io-ts types from Swagger OpenAPI specs",
"main": "dist/toTs.js",
"bin": "dist/cli.js",
"scripts": {
"prepare": "npm run build",
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts src",
"start": "cross-env TS_NODE_FILES=true node-dev -r ts-node/register --inspect src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "8.0.1",
"@types/got": "9.6.7",
"@types/jest": "24.0.21",
"@types/js-yaml": "3.12.1",
"@types/meow": "5.0.0",
"@types/node": "12.12.0",
"@typescript-eslint/eslint-plugin": "2.6.0",
"@typescript-eslint/parser": "2.6.0",
"cross-env": "6.0.3",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"jest": "24.9.0",
"node-dev": "4.0.0",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"typescript": "3.6.4"
},
"dependencies": {
"@types/prettier": "1.18.3",
"chalk": "2.4.2",
"fs-extra": "8.1.0",
"got": "9.6.0",
"js-yaml": "3.13.1",
"meow": "5.0.0",
"prettier": "1.18.2"
}
}