-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
64
65
66
67
68
69
{
"name": "error-middleware",
"version": "5.1.0",
"description": "More control to express errors",
"main": "src/index.js",
"scripts": {
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/server.ts",
"clean": "rm -rf ./dist",
"copy-package": "cp package.json dist",
"copy-readme": "cp README.md dist",
"build": "npm run clean && tsc && npm run copy-readme && npm run copy-package",
"build-and-pack": "npm run build && cd dist && npm pack",
"build-and-publish": "npm run build && cd dist && npm publish",
"lint": "tslint -p tsconfig.json",
"test": "ts-node jasmine.js",
"test-coverage": "nyc --reporter=lcov --reporter=text-lcov ts-node jasmine.js --collectCoverageFrom=!/examples/**/*",
"publish-coverage": "coveralls < coverage/lcov.info"
},
"keywords": [
"express",
"express.js",
"error",
"middleware"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielsiedler/express-error-handler.git"
},
"author": "Gabriel Siedler <[email protected]> (http://gabriel.siedler.ninja)",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.8",
"axios": "^0.18.0",
"coveralls": "^3.0.2",
"express": "^4.16.3",
"jasmine": "^3.1.0",
"jasmine-console-reporter": "^3.0.2",
"minimist": ">=1.2.3",
"nyc": "^13.3.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"engines": {
"node": ">=6.4.0",
"npm": ">=3.10.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"dist",
"coverage",
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"prettier": "^1.19.1",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0"
}
}