-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 866 Bytes
/
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
{
"name": "unsupported-value-error",
"version": "0.1.0",
"description": "Utility Error class for performing exhaustiveness checks via exceptions in TypeScript.",
"repository": "buschtoens/unsupported-value-error",
"author": "Jan Buschtöns <jan@buschtoens.me> (https://jan.buschtoens.me)",
"license": "ISC",
"keywords": [
"typescript",
"ts",
"type",
"exhaustive",
"exhaustiveness",
"check",
"control",
"flow"
],
"scripts": {
"lint:js": "eslint --ext ts,js .",
"lint:types": "tsc --noEmit",
"test": "echo TODO: write some tests!",
"prepack": "tsc --build",
"postpack": "tsc --build --clean"
},
"main": "index.js",
"files": [
"index.js",
"index.ts"
],
"devDependencies": {
"@clark/eslint-config-typescript": "^1.24.1",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
}
}