This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "esresult",
"version": "3.0.0",
"description": "A tiny, TypeScript-first, result/error handling utility.",
"private": false,
"repository": "github:peterboyer/esresult",
"author": "Peter Boyer <https://github.com/peterboyer>",
"license": "MIT",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"prepare": "husky install",
"dev": "yarn test && yarn test:ts && yarn lint",
"test": "./scripts/test.sh",
"test:ts": "./scripts/test-ts.sh",
"test:uat": "./scripts/test-uat.sh",
"lint": "./scripts/lint.sh",
"build": "./scripts/build.sh",
"build:version": "./scripts/build-version.sh",
"docs": "./scripts/docs.sh",
"changelog": "./scripts/changelog.sh"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"concurrently": "^7.1.0",
"conventional-changelog-cli": "^2.2.2",
"dot-json": "^1.2.2",
"esbuild": "^0.14.11",
"esbuild-jest": "^0.5.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"prettier": "^2.4.1",
"tsd": "^0.19.1",
"typedoc": "^0.22.7",
"typescript": "^4.5.4"
},
"keywords": [
"es",
"result",
"ok",
"error",
"async",
"promise",
"monad",
"monads",
"monadic",
"fp",
"functional",
"rop",
"typescript"
]
}