-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "swagger-escode",
"version": "1.0.3",
"description": "Generate TS/JS code when you open swagger docs",
"main": "index.js",
"scripts": {
"lint": "lint-staged",
"codegen": "node ts/index.js",
"precommit": "lint-staged"
},
"author": "benlv.hu@qq.com",
"homepage": "https://github.com/Derek-Hu/swagger-escode",
"repository": {
"type": "git",
"url": "git+https://github.com/Derek-Hu/swagger-escode.git"
},
"keywords": [
"swagger",
"codegen",
"webpack",
"typescript",
"javascript",
"nodejs",
"extension",
"openapi"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/generator": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/template": "^7.2.2",
"@babel/types": "^7.2.2",
"eslint": "^5.6.0",
"lint-staged": "^7.0.5",
"prettier": "1.12.1"
},
"dependencies": {
"chalk": "^4.1.0"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"eslint --fix",
"git add"
],
"yarn.lock": [
"git rm --cached"
]
}
}