-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 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
66
67
68
69
70
71
72
73
74
{
"name": "ts-union",
"version": "2.3.0",
"description": "ADT (sum type) in typescript inspired by ML language family",
"repository": "https://github.com/twop/ts-union",
"license": "MIT",
"type": "module",
"keywords": [
"adt",
"typescript",
"sum-types"
],
"scripts": {
"test": "ava -v",
"pika-pack": "pika build",
"pika-publish": "pika publish",
"typecheck": "tsc --noEmit",
"benchmark": "ts-node --project ./tsconfig.bench.json benchmarks/perfBenchmarks.ts",
"version": "npx @pika/pack"
},
"dependencies": {},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/node": "^14.0.11",
"ava": "^3.13.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "4.0.3",
"unionize": "3.1.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"trailingComma": "es5",
"singleQuote": true
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"files": [
"src/**/*.test.ts"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"__tests__/**/*.*",
"benchmarks/**/*.*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}