-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1007 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
42
{
"name": "ts-guard-match",
"version": "0.0.5",
"description": "Dead-simple matcher library, relying on TypeScript type guards",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Eranikid/ts-guard-match.git"
},
"bugs": {
"url": "https://github.com/Eranikid/ts-guard-match/issues"
},
"homepage": "https://github.com/Eranikid/ts-guard-match#readme",
"keywords": [
"pattern",
"matching",
"pattern-matching",
"typescript"
],
"author": {
"name": "Pavlushin Dmitry",
"email": "pavlushindmitry@gmail.com"
},
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"test": "jest --config jest.config.json",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
}
}