-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "better-curry",
"version": "1.6.0",
"description": "Forget Function.bind and func.apply(context, arguments), performance matters! For a better curry!",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"benchmark": "node test/benchmark.js"
},
"engines": {
"node": ">=0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/pocesar/js-bettercurry"
},
"keywords": [
"curry",
"function",
"bind",
"currying",
"partial function",
"functional",
"delegate"
],
"testling": {
"harness": "mocha-bdd",
"files": ["test/globals.js", "test/tests.js"],
"browsers": [
"ie/8..latest",
"chrome/latest",
"firefox/3.5",
"firefox/latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"devDependencies": {
"mocha": "*",
"expect.js": "*",
"benchmark": "1.x.x",
"delegates": "*"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pocesar/js-bettercurry/issues"
},
"homepage": "https://github.com/pocesar/js-bettercurry"
}