-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 877 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
43
44
45
46
47
48
49
50
{
"name": "co-functional",
"version": "0.2.1",
"description": "",
"main": "index.js",
"keywords": [
"co",
"co functional",
"co-functional",
"functional",
"co bind",
"co for",
"co forEach",
"co filter",
"co reduce",
"co compose",
"async",
"promise"
],
"scripts": {
"test": "mocha test/index.js"
},
"author": "Benjamin Räder <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/N0ps32/co-functional.git"
},
"dependencies": {
"co": "^4.6.0",
"lodash": "^4.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"mocha": "^2.3.4"
}
}