-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "maybe-baby",
"version": "2.0.3",
"description": "Maybe monad for JavaScript",
"author": "Mike Chabot",
"license": "MIT",
"main": "index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src/index.ts"
],
"scripts": {
"build": "babel src -d lib --extensions .ts",
"prebuild": "rm -rf ./lib",
"postbuild": "tsc --outDir lib",
"test": "jest",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"generate-docs": "node_modules/.bin/jsdoc -c ./.jsdoc.json -t ./node_modules/minami/ README.md ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikechabot/maybe-baby.git"
},
"keywords": [
"maybe",
"monad",
"javascript"
],
"bugs": {
"url": "https://github.com/mikechabot/maybe-baby/issues"
},
"homepage": "https://github.com/mikechabot/maybe-baby#readme",
"tonicExampleFilename": "example.js",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-jest": "^26.6.3",
"better-docs": "^2.3.2",
"coveralls": "^3.0.2",
"eslint": "^7.16.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"minami": "^1.2.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}