-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "@thames/monads",
"version": "0.7.0",
"description": "Option, Result, and Either types for JavaScript - Inspired by Rust",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18",
"npm": ">=8",
"pnpm": ">=8"
},
"keywords": [
"monads",
"option",
"result",
"either",
"javascript",
"js",
"typescript",
"node",
"node.js"
],
"author": "Slavo Vojacek <slavo@thames.technology>",
"license": "MIT",
"homepage": "https://github.com/thames-technology/monads",
"bugs": "https://github.com/thames-technology/monads/issues",
"scripts": {
"build": "rollup -c",
"docs": "typedoc --out docs src/index.ts --excludeNotDocumented",
"format": "prettier --check '**/*.{ts,mjs,json,md}' '.github/**/*.{yml,yaml,md}'",
"format:fix": "prettier --write '**/*.{ts,mjs,json,md}' '.github/**/*.{yml,yaml,md}'",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:cover": "jest --coverage --verbose --runInBand"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@thames/eslint-config": "^0.0.4",
"@thames/prettier-config": "^0.0.4",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "3.3.3",
"rollup": "^4.18.0",
"ts-jest": "^29.1.5",
"typedoc": "^0.26.4",
"typescript": "^5.4.5"
}
}