forked from machobearstudio/hyperlane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
55
56
57
{
"name": "hyperlane",
"description": "Context-dependent computation pipelines",
"keywords": "comonad, store, continuation, lens, pipeline, context, composition, control flow",
"version": "2.0.2",
"scripts": {
"compile": "rm -rf dist/* && babel --presets env --plugins transform-object-rest-spread -d dist/ src/",
"test": "mocha --require babel-register test/**/*.test.js",
"example": "babel-node --presets env --plugins transform-object-rest-spread examples/i-am-your-father.js",
"genetic": "babel-node --presets env --plugins transform-object-rest-spread examples/genetic.js"
},
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/machobearstudio/hyperlane"
},
"author": "Machobear Studio Inc.",
"contributors": [
{
"name": "Anton Chernikov",
"email": "achernikov@acvos.com",
"url": "https://github.com/acvos"
}
],
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"array-flatten": "^2.1.1",
"curry": "^1.2.0",
"function-pipe": "^1.0.0",
"object-path": "^0.11.4",
"poly-exclude": "^1.0.4",
"poly-filter": "^1.0.2",
"poly-map": "^1.1.0",
"poly-select": "^1.0.0"
},
"engines": {
"node": ">=4.0",
"npm": ">=2.0"
},
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"deep-equal": "^1.0.1",
"expect": "^21.2.1",
"mocha": "^4.0.1",
"node-fetch": "^1.7.3"
}
}