forked from cbowdon/TsMonad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1006 Bytes
/
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
{
"name": "@magda/tsmonad",
"version": "0.9.0",
"description": "TsMonad - fun-size monads library for TypeScript",
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"typings": "./dist/index.d.ts",
"directories": {},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc -b",
"pretest": "yarn build",
"test": "mocha dist/test"
},
"repository": {
"type": "git",
"url": "https://github.com/magda-io/TsMonad.git"
},
"keywords": [
"typescript",
"monad",
"functional"
],
"author": {
"name": "Chris Bowdon",
"url": "https://github.com/cbowdon"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.9",
"@types/underscore": "^1.8.0",
"assert": "^2.1.0",
"mocha": "^10.2.0",
"typescript": "5.3.3",
"underscore": "^1.13.6"
}
}