-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 855 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
{
"name": "@ybq/mockr",
"version": "0.6.2",
"registry": "https://registry.npmjs.org/",
"description": "A simple mock server based on koa.",
"main": "./src/index.js",
"bin": {
"mockr": "./src/index.js"
},
"files": [
"src"
],
"scripts": {
"start": "node ./src/index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mock",
"koa",
"json",
"mockserver"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yubaoquan/mockr.git"
},
"author": "yubaoquan",
"license": "ISC",
"dependencies": {
"@ybq/jmockr-ftl-render": "0.0.2",
"koa": "^2.5.1",
"koa-static": "^4.0.3",
"mockjs": "^1.0.1-beta3"
},
"devDependencies": {
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}