-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "openapi-tool",
"version": "0.4.2",
"description": "a tool to generate service file based on openapi",
"main": "dist/main.js",
"module": "dist/main.esm.js",
"typings": "dist/main.d.ts",
"scripts": {
"test": "node example/main.js",
"start": "node script/build.js"
},
"author": "Joey Hua",
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.0.7",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-alloy": "^4.1.0",
"rollup": "^2.53.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"terser": "^5.7.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"ejs": "^3.1.6",
"umi-request": "^1.3.9"
},
"keywords": [
"node",
"swagger",
"openapi"
],
"bugs": {
"url": "https://github.com/huajiayi/openapi-tool/issues"
},
"homepage": "https://github.com/huajiayi/openapi-tool#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/huajiayi/openapi-tool.git"
}
}