-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "connect-api-mocker",
"version": "0.0.0-development",
"description": "A connect middleware to serve a RESTful api by some json, xml or js files",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --ui bdd ./test --exit",
"lint": "eslint .",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "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": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"semantic-release": "^19.0.3",
"supertest": "^6.2.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.1"
}
}