-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "oas-typegen",
"version": "0.2.1",
"description": "Generate TS/JS/DTS type definitions from OpenAPI document (V2).",
"main": "dest/bundle.js",
"scripts": {
"build": "npx rollup -c",
"postbuild": "echo '#!/usr/bin/env node' > ./bin/typegen.js && cat ./dest/bundle.js >> ./bin/typegen.js",
"watch": "npx rollup -c -w",
"prestart": "npm run build",
"start": "node dest/bundle.js",
"test": "jest"
},
"keywords": [
"openapi",
"swagger",
"typescript",
"jsdoc"
],
"author": "differui<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/differui/oas-typegen.git"
},
"files": [
"dest",
"bin"
],
"bin": {
"typegen": "bin/typegen.js",
"oas-typegen": "bin/typegen.js"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/json-schema": "^7.0.1",
"@types/md5": "^2.1.33",
"@types/meow": "^5.0.0",
"@types/node": "^10.12.10",
"@types/ora": "^1.3.4",
"@types/prettier": "^1.15.0",
"@types/resolve": "0.0.8",
"@types/tapable": "^1.0.4",
"axios-mock-adapter": "^1.15.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"jest": "^23.6.0",
"mock-fs": "^4.7.0",
"rollup": "^0.41.6",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^3.2.2",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3"
},
"dependencies": {
"axios": "^0.18.0",
"inversify": "^4.13.0",
"json-schema-to-typescript": "^6.0.1",
"md5": "^2.2.1",
"memory-fs": "^0.4.1",
"meow": "^5.0.0",
"oai-ts-core": "^0.2.27",
"openapi-jsonschema-parameters": "^1.0.3",
"openapi-types": "^1.3.2",
"ora": "^3.0.0",
"prettier": "^1.15.2",
"reflect-metadata": "^0.1.12",
"resolve": "^1.8.1",
"tapable": "^1.1.0",
"tslib": "^1.9.3",
"yaml": "^1.0.0"
}
}