-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 KB
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
{
"name": "@quanterall/lich",
"description": "Lich is a library for chaining computations in TypeScript. It's heavily inspired by the monadic structures in Haskell. In particular Maybe and Either.",
"author": "Georgi Spasov",
"version": "1.0.13",
"license": "BSD-2-Clause",
"browser": "dist/index.web.js",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublish": "yarn build && yarn test",
"clean": "yarn rimraf dist",
"prebuild": "yarn clean && yarn format && yarn lint",
"build:es-web": "esbuild --target=es6 --bundle index.ts --outfile=dist/index.web.js --sourcemap --format=iife --global-name=Lich --minify",
"build": "yarn tsc && yarn build:es-web",
"lint": "eslint -c .eslintrc.js .",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"esbuild": "^0.14.18",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^37.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^27.3.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"homepage": "https://github.com/quanterall/lich",
"repository": {
"type": "git",
"url": "git+https://github.com/quanterall/lich.git"
},
"bugs": {
"url": "https://github.com/quanterall/lich/issues"
},
"keywords": [
"chaining",
"monad",
"either",
"maybe",
"quanterall",
"functional"
]
}