-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
{
"name": "az-express-errors",
"version": "1.2.3",
"description": "Better way to deal with express error handling. The right way to deal with async errors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --plugin markdown --ext ts,md src",
"test": "mocha -r ts-node/register --reporter spec --bail --check-leaks __tests__/**/*.spec.ts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -r ts-node/register --reporter dot --check-leaks __tests__/**/*.spec.ts",
"build": "tsc"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ywarezk/express-zonejs-errors.git"
},
"keywords": [
"express",
"errors",
"async",
"zonejs",
"zone.js"
],
"author": "ywarezk",
"license": "MIT",
"bugs": {
"url": "https://github.com/ywarezk/express-zonejs-errors/issues"
},
"homepage": "https://github.com/ywarezk/express-zonejs-errors#readme",
"dependencies": {
"zone.js": "^0.12.0"
},
"devDependencies": {
"@types/autocannon": "^4.1.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.9",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/mocha": "^7.0.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"autocannon": "^4.6.0",
"axios": "^0.19.2",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.2",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.13",
"sqlite": "^3.0.3",
"sqlite3": "^5.1.2",
"ts-node": "^8.6.2",
"typeorm": "^0.2.24",
"typescript": "^3.7.5"
}
}