Version 1
[yaffs-website] / node_modules / for-each / package.json
1 {
2   "_args": [
3     [
4       "for-each@^0.3.2",
5       "/var/www/yaffs/node_modules/parse-headers"
6     ]
7   ],
8   "_from": "for-each@>=0.3.2 <0.4.0",
9   "_id": "for-each@0.3.2",
10   "_inCache": true,
11   "_installable": true,
12   "_location": "/for-each",
13   "_npmUser": {
14     "email": "raynos2@gmail.com",
15     "name": "raynos"
16   },
17   "_npmVersion": "1.3.17",
18   "_phantomChildren": {},
19   "_requested": {
20     "name": "for-each",
21     "raw": "for-each@^0.3.2",
22     "rawSpec": "^0.3.2",
23     "scope": null,
24     "spec": ">=0.3.2 <0.4.0",
25     "type": "range"
26   },
27   "_requiredBy": [
28     "/parse-headers"
29   ],
30   "_resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz",
31   "_shasum": "2c40450b9348e97f281322593ba96704b9abd4d4",
32   "_shrinkwrap": null,
33   "_spec": "for-each@^0.3.2",
34   "_where": "/var/www/yaffs/node_modules/parse-headers",
35   "author": {
36     "email": "raynos2@gmail.com",
37     "name": "Raynos"
38   },
39   "bugs": {
40     "email": "raynos2@gmail.com",
41     "url": "https://github.com/Raynos/for-each/issues"
42   },
43   "contributors": [
44     {
45       "name": "Jake Verbaten"
46     },
47     {
48       "name": "Jordan Harband",
49       "url": "https://github.com/ljharb"
50     }
51   ],
52   "dependencies": {
53     "is-function": "~1.0.0"
54   },
55   "description": "A better forEach",
56   "devDependencies": {
57     "tape": "~1.1.0"
58   },
59   "directories": {},
60   "dist": {
61     "shasum": "2c40450b9348e97f281322593ba96704b9abd4d4",
62     "tarball": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"
63   },
64   "homepage": "https://github.com/Raynos/for-each",
65   "keywords": [],
66   "licenses": [
67     {
68       "type": "MIT",
69       "url": "http://github.com/Raynos/for-each/raw/master/LICENSE"
70     }
71   ],
72   "main": "index",
73   "maintainers": [
74     {
75       "name": "raynos",
76       "email": "raynos2@gmail.com"
77     }
78   ],
79   "name": "for-each",
80   "optionalDependencies": {},
81   "readme": "# for-each [![build status][1]][2]\n\n[![browser support][3]][4]\n\nA better forEach.\n\n## Example\n\nLike `Array.prototype.forEach` but works on objects.\n\n```js\nvar forEach = require(\"for-each\")\n\nforEach({ key: \"value\" }, function (value, key, object) {\n    /* code */\n})\n```\n\nAs a bonus, it's also a perfectly function shim/polyfill for arrays too!\n\n```js\nvar forEach = require(\"for-each\")\n\nforEach([1, 2, 3], function (value, index, array) {\n    /* code */\n})\n```\n\n## Installation\n\n`npm install for-each`\n\n## Contributors\n\n - Raynos\n\n## MIT Licenced\n\n  [1]: https://secure.travis-ci.org/Raynos/for-each.png\n  [2]: http://travis-ci.org/Raynos/for-each\n  [3]: https://ci.testling.com/Raynos/for-each.png\n  [4]: https://ci.testling.com/Raynos/for-each\n\n",
82   "readmeFilename": "README.md",
83   "repository": {
84     "type": "git",
85     "url": "git://github.com/Raynos/for-each.git"
86   },
87   "scripts": {
88     "test": "node test/test.js"
89   },
90   "testling": {
91     "browsers": [
92       "android-browser/4.2",
93       "chrome/20.0..latest",
94       "chrome/4.0..10.0",
95       "chrome/canary",
96       "firefox/15.0..latest",
97       "firefox/3.0..6.0",
98       "firefox/nightly",
99       "iexplore/6.0..latest",
100       "ipad/6.0..latest",
101       "iphone/6.0..latest",
102       "opera/10.0..latest",
103       "opera/next",
104       "safari/4.0..latest"
105     ],
106     "files": "test/test.js"
107   },
108   "version": "0.3.2"
109 }