-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1001 Bytes
/
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
{
"name": "api-service-generator",
"version": "1.5.11",
"description": "api generator",
"main": "dist/index.js",
"bin": {
"gen": "bin/bin.js"
},
"scripts": {
"build": "rollup -c",
"run": "node dist/index.js"
},
"keywords": [
"generator",
"generate",
"api"
],
"author": "mifan",
"license": "MIT",
"files": [
"dist/index.js",
"bin/bin.js",
"generate.conf.js",
"template"
],
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/fs-extra": "^5.0.4",
"@types/micromatch": "^3.1.0",
"@types/mustache": "^0.8.32",
"@types/node": "^10.12.18",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript": "^1.0.0",
"typescript": "^3.2.2",
},
"dependencies": {
"axios": "^0.19.2",
"commander": "^2.20.3",
"core-js": "^2.6.3",
"fs-extra": "^7.0.1",
"micromatch": "^3.1.10",
"mustache": "^3.0.1"
}
}