This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "http-fake-backend",
"version": "5.0.0",
"description": "Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/micromata/http-fake-backend",
"repository": "micromata/http-fake-backend",
"author": "Michael Kühnel <[email protected]>",
"private": true,
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js",
"test": "lab -v -c -L",
"release": "standard-version --tag-prefix",
"release:patch": "standard-version --tag-prefix --release-as patch",
"release:minor": "standard-version --tag-prefix --release-as minor",
"release:major": "standard-version --tag-prefix --release-as major",
"coverage": "lab -v -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html",
"coveralls": "lab -r lcov | ./node_modules/.bin/coveralls"
},
"eslintConfig": {
"extends": "plugin:@hapi/recommended"
},
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@hapi/boom": "^9.1.1",
"@hapipal/confidence": "^6.0.2",
"dotenv": "^16.0.0",
"@hapi/glue": "^8.0.0",
"@hapi/good": "^9.0.1",
"@hapi/good-console": "^9.0.1",
"@hapi/good-squeeze": "^6.0.0",
"handlebars": "^4.7.7",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.5",
"require-dir": "^1.2.0",
"@hapi/vision": "^6.1.0"
},
"devDependencies": {
"@hapi/code": "^5.2.4",
"coveralls": "^3.1.1",
"eslint": "^8.11.0",
"@hapi/eslint-plugin": "^5.1.0",
"@hapi/lab": "^24.5.1",
"nodemon": "^2.0.15",
"nsp": "^3.2.1",
"standard-version": "^4.3.0"
}
}