-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "@aptoma/hapi-log",
"author": "Martin Jonsson <[email protected]>",
"version": "10.0.0",
"description": "Hapi Log Plugin",
"main": "index.js",
"bin": {
"pretty-hapi-log": "./lib/pretty.js"
},
"repository": {
"type": "git",
"url": "[email protected]:aptoma/hapi-log.git"
},
"scripts": {
"lint": "eslint --ext '.js' lib test '*.js'",
"test": "npm run lint && nyc --reporter=text-summary --reporter=lcov mocha --exit 'test/**/*.test.js'",
"watch": "mocha --watch 'test/**/*.js' --timeout 500",
"release": "npm test && release-it -n -i patch",
"release:minor": "npm test && release-it -n -i minor",
"release:major": "npm test && release-it -n -i major",
"bench": "node benchmarks/index.js 2>/dev/null"
},
"engines": {
"node": ">=16.0.0"
},
"license": "UNLICENSED",
"dependencies": {
"@hapi/hoek": "^9.2.1",
"chalk": "^2.4.2",
"fast-safe-stringify": "^2.1.1",
"moment": "^2.27.0"
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"@hapi/hapi": "^20.2.1",
"auto-changelog": "^2.4.0",
"eslint": "^8.10.0",
"fastbench": "^1.0.1",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"release-it": "^15.0.0",
"should": "^13.2.3",
"sinon": "^13.0.1"
}
}