-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@openfinanceio/http-errors",
"version": "1.7.0",
"description": "A set of extensions to the standard Error class that add features that make it easy to convert thrown errors into detailed HTTP responses.",
"repository": {
"type": "git",
"url": "https://github.com/openfinanceio/ts-http-errors.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose",
"prepublishOnly": "rm -Rf dist; npx tsc"
},
"author": "Openfinance",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^10.17.51",
"husky": "^1.3.1",
"jest": "^24.8.0",
"prettier": "^1.16.0",
"pretty-quick": "^1.10.0",
"ts-jest": "^24.0.2",
"typescript": "^4.1.4"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}