-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 867 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
36
{
"name": "combine-type-predicates",
"version": "0.1.2",
"description": "Combine user-defined type guards / type predicates as unions and intersections.",
"repository": "buschtoens/combine-type-predicates",
"author": "Jan Buschtöns <[email protected]> (https://jan.buschtoens.me)",
"license": "ISC",
"keywords": [
"typescript",
"ts",
"type",
"predicate",
"guard",
"union",
"intersection",
"join",
"merge"
],
"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"
}
}