This repository has been archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mock-where",
"version": "1.0.1",
"description": "Flexible mock server for RESTful API testing, with a SQL-like mock rule engine",
"main": "src/App.js",
"scripts": {
"start": "node ./src/App.js",
"cover": "node ./node_modules/istanbul/lib/cli.js cover --include-all-sources ./node_modules/jasmine/bin/jasmine.js",
"test": "node ./node_modules/jasmine/bin/jasmine.js",
"lint": "./node_modules/.bin/eslint -f stylish --cache --cache-location ./build/eslint/cache/ --color ./src/",
"watch": "./node_modules/.bin/esw --watch -f stylish --cache --cache-location ./build/eslint/cache/ --color ./src/",
"jsdoc": "./node_modules/.bin/jsdoc ./src -c .jsdoc.json",
"hook": "node ./tool/HookTarget.js",
"docker": "IMG=docker.wxcount.com:4443/library/mock-where:1.0.1 && sudo docker build . -t $IMG && sudo docker push $IMG"
},
"homepage": "https://github.com/qiangyt/mock-where",
"repository": "git@github.com:qiangyt/mock-where.git",
"author": "Qiang Yiting <qiangyt@wxcount.com> (https://github.com/qiangyt)",
"contributors": [],
"keywords": [
"mock",
"RESTful",
"REST",
"test",
"API",
"http",
"Swagger"
],
"bugs": {
"url": "https://github.com/qiangyt/mock-where/issues",
"email": "qiangyt@wxcount.com"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"dependencies": {
"alasql": "0.5.1",
"axios": "0.19.0",
"co-body": "5.1.1",
"ejs": "2.5.6",
"handlebars": "4.5.3",
"http-proxy": "1.18.0",
"jade": "1.11.0",
"js-yaml": "3.13.1",
"kcors": "2.2.1",
"koa": "2.3.0",
"koa-body": "2.3.0",
"koa-logger": "3.0.1",
"koa-router": "7.2.1",
"koa-static": "4.0.1",
"koa-xml-body": "2.0.0",
"lodash": "4.17.15",
"moment": "2.24.0",
"mustache": "2.3.0",
"pug": "2.0.0-rc.3",
"qnode-beans": "1.2.9",
"qnode-config": "1.0.9",
"qnode-error": "1.0.7",
"qnode-log": "1.0.5",
"qnode-rest": "1.0.25",
"sprintf-js": "1.1.2",
"sqlite3": "3.1.12",
"superagent": "3.8.3",
"underscore": "1.8.3"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-eslint": "10.0.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"braces": "3.0.2",
"eslint": "6.7.2",
"eslint-watch": "6.0.1",
"istanbul": "1.1.0-alpha.1",
"jasmine": "3.5.0",
"jsdoc": "3.5.4",
"mock-fs": "4.4.1",
"mock-require": "2.0.2",
"qnode-superagent-mocker": "0.5.3",
"sinon": "7.5.0",
"supertest": "3.0.0"
},
"browser": {
"os": false
}
}