-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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": "typescript-functional-extensions",
"description": "A TypeScript implementation of synchronous and asynchronous Maybe and Result monads",
"keywords": [
"typescript",
"functional",
"monad",
"maybe",
"result",
"async"
],
"homepage": "https://github.com/seangwright/typescript-functional-extensions#readme",
"bugs": {
"url": "https://github.com/seangwright/typescript-functional-extensions/issues"
},
"repository": {
"type": "git",
"url": "github.com:seangwright/typescript-functional-extensions"
},
"license": "MIT",
"author": {
"name": "Sean G. Wright",
"url": "https://www.seangwright.me"
},
"version": "2.0.0",
"engines": {
"node": ">=18.12.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"/dist"
],
"scripts": {
"start": "tsc --watch",
"prebuild": "trash dist",
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"postbuild": "cpy package.cjs.json ./dist/cjs && cpy package.esm.json ./dist/esm",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"report:size": "node ./scripts/dist-size.mjs"
},
"devDependencies": {
"@babel/preset-typescript": "7.21.5",
"@types/node": "18.16.3",
"@vitest/coverage-c8": "0.31.0",
"cpy-cli": "4.2.0",
"gzip-size": "7.0.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"trash-cli": "5.0.0",
"ts-node": "10.9.1",
"tslib": "2.5.0",
"typescript": "5.0.4",
"uglify-js": "3.17.4",
"vitest": "0.31.0"
}
}