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
|
{
"name": "remove-array-items",
"version": "1.0.0",
"description": "remove items from a javascript array without generating memory garbage",
"main": "index.js",
"scripts": {
"test": "tap ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mreinstein/remove-array-items.git"
},
"keywords": [
"array",
"splice",
"remove",
"nogarbage",
"gcfriendly"
],
"author": "Mike Reinstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/mreinstein/remove-array-items/issues"
},
"homepage": "https://github.com/mreinstein/remove-array-items#readme",
"devDependencies": {
"tap": "^10.3.2"
}
}
|