-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "simple-maybe",
"version": "1.4.0",
"description": "A Simple Maybe Monad Module. Plays nice with Ramda.",
"main": "src/index.js",
"scripts": {
"test": "find ./src -name '*.spec.js' | NODE_ENV=test xargs node ./node_modules/jasmine/bin/jasmine.js",
"build": "./node_modules/browserify/bin/cmd.js ./src/index.js -o ./dist/simple-maybe.js -s MaybeModule --no-bundle-external -t [ babelify --presets [ es2015 react ] ] && babel --presets es2015 src -d app"
},
"keywords": [
"maybe",
"monad",
"fantasy-land",
"either",
"functional",
"ramda"
],
"author": "Robert Gerald Porter <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rgeraldporter/simple-maybe.git"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "8.0.0",
"browserify": "16.2.0",
"browserify-shim": "3.8.14",
"jasmine": "3.1.0",
"ramda": "0.25.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"ramda": "global:R"
}
}