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
|
{
"name": "reduce",
"version": "1.0.1",
"description": "A better [].reduce",
"keywords": [],
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/Raynos/reduce.git",
"main": "index",
"homepage": "https://github.com/Raynos/reduce",
"contributors": [
{
"name": "Jake Verbaten"
}
],
"bugs": {
"url": "https://github.com/Raynos/reduce/issues",
"email": "raynos2@gmail.com"
},
"dependencies": {
"object-keys": "~1.0.0"
},
"devDependencies": {
"tape": "~2.14.0",
"covert": "~1.0.0",
"jscs": "~1.5.9"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/reduce/raw/master/LICENSE"
}
],
"testling": {
"files": "test/*.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest"
]
},
"scripts": {
"test": "npm run lint && node test/simple.js && npm run coverage-quiet",
"coverage": "covert test/simple.js",
"coverage-quiet": "covert --quiet test/simple.js",
"lint": "jscs *.js test/*.js"
}
}
|