-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 902 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
37
38
39
40
41
{
"name": "ts-guardian",
"version": "1.8.0",
"description": "Declarative, composable type guards",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.tsx\"",
"prepare": "yarn build",
"prepublishOnly": "yarn format",
"test": "jest --config jestconfig.json --watch"
},
"keywords": [
"type",
"predicate",
"typescript",
"guard",
"guards",
"functional",
"composable"
],
"author": "Jonathan Madelaine",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.5",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jmadelaine/ts-guardian.git"
}
}