-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "swagger-api-helper",
"version": "1.0.24",
"description": "express",
"main": "./lib/index.js",
"type": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"serve": "nodemon ./server/index.js",
"build": "tsc -w",
"pub": "npm publish --registry https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yehq/swagger-api-helper.git"
},
"keywords": [
"express",
"webpack",
"swagger",
"mock",
"typescript",
"api"
],
"author": "yhq",
"license": "ISC",
"bugs": {
"url": "https://github.com/yehq/swagger-api-helper/issues"
},
"homepage": "https://github.com/yehq/swagger-api-helper#readme",
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/express": "^4.17.0",
"@types/jest": "^26.0.5",
"@types/mkdirp": "^0.5.2",
"@types/mockjs": "^1.0.2",
"@types/node": "^12.0.8",
"babel-jest": "^26.1.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jest": "^26.1.0",
"nodemon": "^1.19.1",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"chokidar": "^3.0.1",
"mkdirp": "^0.5.1",
"mockjs": "^1.0.1-beta3",
"path-to-regexp": "^3.0.0",
"swagger-client": "^3.9.6"
}
}