-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
65 lines (65 loc) · 1.61 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
58
59
60
61
62
63
64
65
{
"name": "ts-pattern",
"version": "4.0.5",
"description": " The exhaustive Pattern Matching library for TypeScript.",
"type": "module",
"source": "src/index.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "dist/index.d.ts",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"clear-test": "jest --clearCache",
"perf": "tsc --project tests/tsconfig.json --noEmit --extendedDiagnostics",
"fmt": "prettier ./src/** ./tests/** -w",
"check": "tsc --strict --noEmit --extendedDiagnostics"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gvergnaud/ts-pattern.git"
},
"keywords": [
"pattern",
"matching",
"pattern-matching",
"typescript",
"match-with",
"match",
"switch",
"adt"
],
"author": "Gabriel Vergnaud",
"license": "MIT",
"bugs": {
"url": "https://github.com/gvergnaud/ts-pattern/issues"
},
"homepage": "https://github.com/gvergnaud/ts-pattern#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.4.5",
"microbundle": "^0.15.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.7.2"
}
}