forked from openapi-ts/openapi-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.06 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.06 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "openapi-typescript",
"description": "Generate TypeScript types from Swagger OpenAPI specs",
"main": "dist/cjs",
"version": "2.4.2",
"engines": {
"node": ">= 10.0.0"
},
"bin": {
"openapi-typescript": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/drwpow/openapi-typescript"
},
"keywords": [
"swagger",
"typescript",
"ts",
"dts",
"openapi",
"codegen",
"generation",
"openapi 3",
"node"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/drwpow/openapi-typescript/issues"
},
"homepage": "https://github.com/drwpow/openapi-typescript#readme",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-copy-assets",
{
"files": [
"bin/"
]
}
]
]
},
"scripts": {
"build": "pika-pack build",
"deploy": "npm run build && pika publish",
"format": "yarn prettier -w .",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts src",
"pregenerate": "npm run build",
"test": "npm run build && jest --no-cache",
"test:coverage": "npm run build && jest --no-cache --coverage && codecov",
"typecheck": "tsc --noEmit",
"version": "npm run build"
},
"dependencies": {
"js-yaml": "^3.14.0",
"kleur": "^4.1.3",
"meow": "^8.0.0",
"prettier": "^2.2.0"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-copy-assets": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.14",
"@types/js-yaml": "^3.12.5",
"@types/prettier": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"codecov": "^3.8.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.3",
"ts-jest": "^26.4.1",
"typescript": "^4.1.2"
}
}