-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 942 Bytes
/
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
{
"name": "@writetome51/array-get-and-remove-by-indexes",
"version": "4.0.0",
"description": "Removes and returns items from array, identified by their indexes",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/array-get-and-remove-by-indexes.git"
},
"keywords": [
"array",
"remove",
"items",
"item",
"indexes",
"manipulation"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/array-get-and-remove-by-indexes/issues"
},
"homepage": "https://github.com/writetome51/array-get-and-remove-by-indexes#readme",
"devDependencies": {
"@writetome51/is-match": "^0.0.1"
},
"dependencies": {
"@writetome51/array-append-prepend": ">=3.0.0",
"@writetome51/array-remove-by-indexes": ">=3.1.0"
}
}