-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
42 lines (42 loc) · 889 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
41
42
{
"name": "immutable-ext",
"version": "1.1.5",
"description": "fantasyland compatible extensions",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DrBoolean/immutable-ext.git"
},
"engines": {
"node": ">=6.2.0"
},
"directories": {
"test": "test"
},
"peerDependencies": {
"immutable": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"daggy": "^0.0.1",
"fantasy-identities": "^0.0.1",
"immutable": "*",
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha --watch test/**.js",
"compile": "babel --presets es2015 -d dist/ ./index.js",
"prepublish": "npm run compile"
},
"keywords": [
"functional",
"immutable",
"monoid",
"monad",
"applicative",
"traversable"
],
"author": "drboolean",
"license": "ISC"
}