-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "mock-crud-api",
"version": "1.0.6",
"description": "mock crud api for testing",
"repository": {
"type": "git",
"url": "git+https://github.com/itsvinayak/mock-rest-api.git"
},
"bin": {
"mock-crud-api": "./src/index.js"
},
"keywords": [
"mock",
"mock-api",
"mocking-api",
"mock-server",
"mock-rest-api",
"mock-crud-api",
"testing",
"test",
"mocking",
"QA",
"QA-testing",
"QA-test",
"crud",
"api",
"rest"
],
"bugs": {
"url": "https://github.com/itsvinayak/mock-rest-api/issues"
},
"homepage": "https://github.com/itsvinayak/mock-rest-api",
"main": "./src/index.js",
"scripts": {
"prepublishOnly": "npm run lint && npm run test",
"test": "jest --forceExit --detectOpenHandles --coverage",
"dev": "node ./src/index.js -c ./exampleConfig.json",
"start": "node ./src/index.js -c",
"lint": "eslint .",
"fix-lint": "eslint --fix .",
"help": "node index.js -h"
},
"author": "Vinayak",
"license": "MIT",
"maintainers": [
{
"name": "Vinayak",
"email": "[email protected]"
}
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^25.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"supertest": "^6.3.3"
}
}