-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "express-mock-api-middleware",
"version": "1.0.12",
"description": "Express middleware for mocking restful APIs",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "babel src -d lib",
"test": "exit 0",
"prepack": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechStark/express-mock-api-middleware.git"
},
"keywords": [
"express",
"middleware",
"api",
"mock"
],
"author": "Wilson Tian <ttt43ttt@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TechStark/express-mock-api-middleware/issues"
},
"homepage": "https://github.com/TechStark/express-mock-api-middleware#readme",
"dependencies": {
"assert": "^2.0.0",
"body-parser": "^1.19.0",
"chokidar": "^3.5.2",
"debug": "^4.3.2",
"glob": "^7.1.7",
"multer": "^1.4.2",
"path-to-regexp": "^6.2.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"babel-eslint": "^10.1.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2"
}
}