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
| {
| "name": "sliced",
| "version": "1.0.1",
| "description": "A faster Node.js alternative to Array.prototype.slice.call(arguments)",
| "main": "index.js",
| "files": [
| "LICENSE",
| "README.md",
| "index.js"
| ],
| "scripts": {
| "test": "make test"
| },
| "repository": {
| "type": "git",
| "url": "git://github.com/aheckmann/sliced"
| },
| "keywords": [
| "arguments",
| "slice",
| "array"
| ],
| "author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
| "license": "MIT",
| "devDependencies": {
| "mocha": "1.5.0",
| "benchmark": "~1.0.0"
| },
| "dependencies": {}
| }
|
|