forked from muratcorlu/connect-api-mocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 943 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
{
"name": "connect-api-mocker",
"version": "1.3.6",
"description": "A connect middleware to serve a RESTful api by some json, xml or js files",
"main": "api-mocker.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muratcorlu/connect-api-mocker.git"
},
"keywords": [
"connect",
"api",
"mock"
],
"author": "Murat Çorlu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/muratcorlu/connect-api-mocker/issues"
},
"homepage": "https://github.com/muratcorlu/connect-api-mocker#readme",
"devDependencies": {
"codecov": "^3.0.0",
"express": "^4.15.3",
"mocha": "^3.5.0",
"nyc": "^11.4.1",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.3.0"
}
}