-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "@chkt/maybe",
"description": "Minimalistic application flow handling",
"version": "1.0.0-beta.8",
"license": "MIT",
"keywords": [
"Failure",
"Monad",
"None",
"Option",
"Result",
"Some"
],
"author": {
"name": "chkt",
"email": "ck@chkt.one",
"url": "chkt.one"
},
"repository": {
"url": "https://github.com/chkt/maybe"
},
"engines": {
"node": ">=16.0"
},
"main": "./dist/index",
"files": [
"./dist/"
],
"scripts": {
"prepublishOnly": "yarn outdated && yarn test && yarn lint && yarn build && yarn doc",
"lint": "yarn eslint source/*.ts source/**/*.ts test/*.ts test/**/*.ts",
"test": "yarn mocha -r ts-node/register test/*.ts test/**/*.ts",
"coverage": "nyc yarn test",
"doc": "yarn typedoc --plugin ../../chkt/typedoc-theme-md --theme md --readme ./module.md --out ./.docs source/*.ts source/**/*.ts && cp ./.docs/modules.md ./readme.md",
"build": "rm -rf ./dist/* && yarn tsc"
},
"devDependencies": {
"@chkt/eslint-config": "^1.0.8",
"@types/mocha": "^10.0",
"@types/node": "^20.12",
"@typescript-eslint/eslint-plugin": "^7.5",
"@typescript-eslint/parser": "^7.5",
"eslint": "^8.57",
"mocha": "^10.4",
"nyc": "15.1",
"ts-node": "^10.9",
"typedoc": "^0.25",
"typescript": "^5.4"
},
"dependencies": {}
}