-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 859 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
{
"name": "maybe",
"version": "0.0.2",
"description": "Maybe monad for JavaScript",
"main": "lib/maybe.js",
"repository": {
"type": "git",
"url": "https://github.com/chrissrogers/maybe.git"
},
"bugs": "https://github.com/chrissrogers/maybe/issues",
"scripts": {
"test": "MAYBE_COV=1 node_modules/.bin/mocha --require should --ui bdd --reporter mocha-lcov-reporter --recursive | ./node_modules/.bin/coveralls",
"browser": "node_modules/.bin/browserify lib/maybe.js -o lib/maybe.browser.js"
},
"keywords": [
"maybe",
"monad",
"type",
"haskell",
"null"
],
"devDependencies": {
"browserify": "^13.0.0",
"coveralls": "*",
"jscoverage": "*",
"lodash": "*",
"mocha": "1.x",
"mocha-lcov-reporter": "*",
"should": "1.x"
},
"author": "Christopher Rogers",
"license": "MIT"
}