This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "interference",
"version": "2.1.0",
"description": "Custom error factory for microservices with http code and \"internal\" code props",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prebuild": "run-s clean-build lint test",
"build": "tsc -p ./tsconfig.json",
"clean-build": "rimraf ./lib && mkdir lib",
"prettier": "prettier --loglevel warn --write \"src/**/*.{ts,tsx}\"",
"prelint": "npm run prettier",
"lint": "tslint --fix -c tslint.json -t stylish -p ./tsconfig.json",
"test": "ava-ts",
"update": "npx npm-check -u",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nucleode/interference.git"
},
"keywords": [
"error",
"errors",
"http error",
"error factory",
"custom errror",
"error generator",
"browser",
"microservices"
],
"author": "Maksim Sinik <maksim@sinik.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nucleode/interference/issues"
},
"homepage": "https://github.com/nucleode/interference#readme",
"devDependencies": {
"@types/node": "^14.0.5",
"ava": "^3.8.2",
"ava-ts": "~0.25.2",
"husky": "^4.2.5",
"npm-run-all": "~4.1.5",
"prettier": "^2.0.5",
"rimraf": "~3.0.2",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "~1.18.0",
"typescript": "^3.9.3"
},
"files": [
"/lib"
],
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}