-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 KB
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
{
"name": "simpler-mocks",
"version": "0.0.0-development",
"description": "REST API mock server made simple. Runs on Node with YAML and JSON mock definitions.",
"keywords": [
"api",
"cli",
"file-based",
"json",
"mock",
"mocks",
"node",
"node.js",
"rest",
"server",
"yaml",
"yml"
],
"license": "MIT",
"author": "Ronald Jerez",
"main": "./src/server.js",
"bin": {
"simpler-mocks": "./src/cli.js"
},
"files": [
"src/**/*"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "nodemon ./src/cli.js -- -p 8080 './tests'",
"samples": "node ./src/cli.js './samples'",
"prof": "node --prof ./src/cli.js -p 8080 './tests'",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"semantic-release": "semantic-release",
"pretty": "prettier --write \"{src,tests}/**/*.js\"",
"prepare": "husky install"
},
"dependencies": {
"argparse": "^2.0.1",
"chance": "^1.1.8",
"chokidar": "^3.5.3",
"globby": "^11.0.1",
"js-yaml": "^4.1.0",
"js-yaml-js-types": "^1.0.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"lodash.get": "^4.4.2",
"lodash.isequalwith": "^4.4.0",
"lodash.ismatchwith": "^4.4.0",
"minimatch": "^5.1.0"
},
"devDependencies": {
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"nodemon": "^2.0.4",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.5",
"supertest": "^6.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/RonaldJerez/simpler-mocks.git"
},
"bugs": {
"url": "https://github.com/RonaldJerez/simpler-mocks/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}