-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"name": "@aptoma/hapi-route-status",
"author": "Martin Jonsson <[email protected]>",
"version": "3.1.0",
"description": "Hapi Route Status",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:aptoma/hapi-route-status.git"
},
"scripts": {
"lint": "eslint --ext '.js' *.js",
"watch": "mocha --watch 'test/**/*.js' '*.js' --timeout 500",
"test": "npm run lint && nyc --reporter=text-summary --reporter=lcov mocha --exit 'test/**/*.test.js'",
"mocha-only-detect": "mocha-only-detector-glob **/*.test.js",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:\" * %s\"",
"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"
},
"engines": {
"node": ">=10.x.x"
},
"license": "UNLICENSED",
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"@hapi/hapi": "^18.3.1",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"release-it": "^2.0.3",
"should": "^13.2.3"
},
"dependencies": {}
}