-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "monadic-js",
"version": "1.3.0",
"description": "Algebraic structure implementations, do-notation, and operators to truly live the fantasy",
"contributors": [
{
"name": "Joel Dentici",
"email": "[email protected]"
}
],
"homepage": "https://github.com/joeldentici/monadic-js",
"bugs": "https://github.com/joeldentici/monadic-js/issues",
"repository": {
"type": "git",
"url": "https://github.com/joeldentici/monadic-js.git"
},
"main": "src/monadic.js",
"scripts": {
"document": "hmdoc 'Monadic JS' src markdown > documentation/api.md",
"testit": "nodeunit test",
"coveragelcov": "nyc --reporter=lcov npm run testit",
"coverage": "nyc npm run testit",
"coveralls": "npm run coveragelcov && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run coveralls"
},
"dependencies": {
"immutable": "^3.8.1",
"rx": "^4.1.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"fantasy-check": "^0.3.2",
"nodeunit": "^0.11.1",
"nyc": "^11.0.3"
}
}