-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "shumway",
"version": "1.0.4",
"description": "Reduce boilerplate code when handling exceptions.",
"keywords": [
"errors",
"decorator",
"typescript"
],
"homepage": "https://github.com/pigulla/shumway",
"bugs": {
"url": "https://github.com/pigulla/shumway/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pigulla/shumway.git"
},
"license": "MIT",
"author": {
"name": "Raphael Pigulla",
"email": "pigulla@four66.com"
},
"main": "dist/index.js",
"files": [
"dist/",
"!dist/*.tsbuildinfo",
"CHANGELOG.md"
],
"scripts": {
"audit": "npm audit && npm audit signatures",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"format": "npm run format:prettier && npm run format:eslint && npm run format:package-json",
"format:eslint": "eslint --ext=ts --fix .",
"format:package-json": "sort-package-json",
"format:prettier": "prettier --write .",
"jest": "rimraf coverage && jest --coverage",
"lint": "npm run lint:tsc && npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint --max-warnings=0 --ext=ts .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"prepublishOnly": "npm run setup && npm test && npm run build",
"setup": "npm ci && rm -rf coverage dist",
"test": "npm run lint && npm run jest && npm run audit"
},
"dependencies": {
"debug": "4.3.7"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.0",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"prettier": "3.3.3",
"sort-package-json": "2.10.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"type-fest": "4.26.1",
"typescript": "5.6.3"
}
}