-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.08 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
{
"name": "@ianwremmel/http-server-exceptions",
"version": "0.0.0-development",
"description": "Server-side exceptions and express middleware",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:ianwremmel/http-server-exceptions.git"
},
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "npm run --silent lint:es && npm run --silent lint:changelog",
"lint:changelog": "commitlint --from origin/master --to HEAD",
"eslint": "eslint --ignore --ignore-path .gitignore --ext .js",
"mocha-reporter-options": "[ -n \"${CI}\" ] && echo '--reporter xunit --reporter-options output=reports/junit/test.xml'",
"test": "nyc --reporter=text mocha $(npm run --silent mocha-reporter-options) './src/**/*-spec.js' './test/integration/spec/**/*.js'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"lint:es": "npm run --silent eslint -- ."
},
"engines": {
"node": ">=12"
},
"keywords": [],
"author": "Ian W. Remmel <[email protected]>",
"license": "MIT",
"dependencies": {
"@ianwremmel/exception": "^3.1.4"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^8.3.4",
"@ianwremmel/eslint-plugin-ianwremmel": "^4.0.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"ejs": "^3.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-compat": "^3.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-markdown": "^2.0.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.16.3",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.5",
"semantic-release": "^17.0.1",
"supertest": "^6.0.0"
},
"lint-staged": {
"*.js": "npm run eslint -- ",
"bin/**": "npm run eslint -- "
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "lint-staged"
}
}
}