-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.55 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
66
67
68
69
70
71
72
{
"name": "@dkendal/match",
"version": "0.3.0",
"author": "Dylan Kendal <dylankendal@gmail>",
"license": "MIT",
"homepage": "https://github.com/dkendal/pattern-match.js",
"bugs": "https://github.com/dkendal/pattern-match.js/issues",
"repository": {
"url": "https://github.com/dkendal/pattern-match.js.git",
"type": "git"
},
"keywords": [
"pattern",
"matching",
"functional",
"typescript"
],
"tags": [
"pattern",
"matching",
"functional",
"typescript"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": false,
"files": [
"dist/"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "make test",
"fmt": "yarn run dprint fmt",
"clean": "make clean",
"build": "make build",
"build-release": "make build-release",
"prepack": "make prepack"
},
"dependencies": {
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@tsconfig/node16": "^1.0.2",
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"benchmark": "^2.1.4",
"chalk": "^5.0.0",
"chalk-cli": "^5.0.0",
"dprint": "^0.18.2",
"esbuild": "^0.12.28",
"esbuild-jest": "^0.5.0",
"jest": "^27.2.0",
"typescript": "^4.4.3"
},
"workspaces": [
".",
"perf",
"test/pack/*"
],
"packageManager": "[email protected]"
}