-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.74 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
{
"name": "@robotsandpencils/koa-errors",
"version": "0.1.3",
"description": "Error handler middleware for koa",
"main": "index.js",
"scripts": {
"// lint": "json comment =============================================",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"// test": "json comment =============================================",
"dev": "nodemon -e js --exec 'pnpm run test'",
"test": "node test.js -r nyan",
"test:ci": "node test.js -r tap,summary --no-color",
"// coverage": "json comment =============================================",
"test:coverage:ci": "c8 --reporter=text --reporter=text-summary pnpm run test:ci",
"coverage:ci": "mkdir -p ./coverage/tmp && touch ./coverage/lcov.info; c8 report --reporter=text-lcov > ./coverage/lcov.info"
},
"pre-push": [
"lint",
"test:ci"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RobotsAndPencils/koa-errors.git"
},
"author": "Andy Wright <[email protected]> (https://github.com/losandes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobotsAndPencils/koa-errors/issues"
},
"homepage": "https://github.com/RobotsAndPencils/koa-errors#readme",
"keywords": [
"koa",
"error",
"middleware"
],
"dependencies": {
"@polyn/blueprint": "^2.7.0",
"@polyn/immutable": "^1.1.2"
},
"devDependencies": {
"@polyn/logger": "^1.0.2",
"c8": "^7.13.0",
"coveralls": "^3.1.1",
"eslint": "^8.35.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"pre-push": "^0.1.4",
"supposed": "^1.3.3",
"unexpected": "^13.1.0"
}
}