-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.35 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
89
90
91
92
93
94
95
96
97
{
"name": "servemocks",
"version": "2.0.1",
"type": "module",
"description": "Starts a webserver which provides a REST API derived from JSON, XML and other sample files located in a specified directory",
"main": "src/public-api.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"lint": "eslint --max-warnings 0 --ext \".js\" --ignore-path .gitignore .",
"lint:fix": "eslint --fix --max-warnings 0 --ext \".js\" --ignore-path .gitignore .",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"prepare": "husky install"
},
"bin": {
"servemocks": "cli.js"
},
"keywords": [
"mock-server",
"mockserver",
"http-server"
],
"author": "Alexander Noack <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diva-e/servemocks.git"
},
"bugs": {
"url": "https://github.com/diva-e/servemocks/issues"
},
"dependencies": {
"ajv": "^8.10.0",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"glob": "^9.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"husky": "^8.0.1",
"jest": "^29.5.0",
"lint-staged": "^13.0.3",
"standard-version": "^9.5.0",
"supertest": "^6.2.4"
},
"lint-staged": {
"*.js": "eslint --fix --max-warnings 0"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependency and Build-Related Updates"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
}
}