-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "type-safe-errors",
"version": "0.5.1",
"description": "Simple type-safe errors for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "NODE_ENV=test mocha --ui tdd src/**/*.test.ts",
"test:watch": "NODE_ENV=test mocha --ui tdd src/test/*.test.ts --watch",
"typecheck": "tsc --noEmit",
"build": "tsc",
"lint": "eslint ./src --ext ts",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wiktor-obrebski/type-safe-errors.git"
},
"author": "Wiktor Obrebski",
"license": "MIT",
"bugs": {
"url": "https://github.com/wiktor-obrebski/type-safe-errors/issues"
},
"keywords": [
"Result",
"Type-safe",
"Promise-like",
"Promise like",
"Strong-typed",
"Strongly typed",
"Strongly typed error",
"Typescript",
"Typescript errors",
"Typed errors",
"Error",
"Exception"
],
"homepage": "https://github.com/wiktor-obrebski/type-safe-errors#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"dist/**/*"
]
}