-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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": "@0devs/error",
"version": "1.8.0",
"description": "custom typescript and javascript errors with codes and causes for node and browsers",
"keywords": [
"error"
],
"main": "dist/Zerror.js",
"types": "dist/Zerror.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "rm -rf lib dist coverage npm-debug.log",
"build": "tsc",
"lint": "eslint --ext .js,.ts ./src ./spec",
"ts": "tsc --watch",
"ts-trace": "tsc --traceResolution",
"postversion": "git push && git push --tags",
"ci": "npm run lint && npm run test:coverage",
"prepublish": "npm run clean && npm run lint && npm test && npm run build",
"ci:build": "npm run ci && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0devs/node-error.git"
},
"author": "alekzonder <alekzonder@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/0devs/node-error/issues"
},
"homepage": "https://github.com/0devs/node-error#readme",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@0devs/package": "^0.18.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.13.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}