forked from 75lb/array-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "array-tools",
"author": "Lloyd Brookes <[email protected]>",
"version": "2.0.9",
"description": "Lightweight, use-anywhere toolkit for working with array data.",
"repository": "https://github.com/75lb/array-tools.git",
"main": "./lib/array-tools.js",
"bin": "bin/cli.js",
"license": "MIT",
"keywords": [
"pluck",
"pick",
"extract",
"flatten",
"sort by",
"arrayify",
"exists",
"where",
"find where",
"without",
"unique",
"splice while"
],
"scripts": {
"test": "tape test/*.js",
"docs": "jsdoc2md -t jsdoc2md/README.hbs lib/*.js > README.md; echo",
"cover": "istanbul cover ./node_modules/.bin/tape test/*.js && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage; echo"
},
"devDependencies": {
"coveralls": "^2.11.6",
"jsdoc-to-markdown": "^1.3.3",
"tape": "^4"
},
"dependencies": {
"ansi-escape-sequences": "^2.2.2",
"array-back": "^1.0.2",
"collect-json": "^1.0.7",
"filter-where": "^1.0.1",
"object-get": "^2.0.0",
"reduce-extract": "^1.0.0",
"reduce-flatten": "^1.0.0",
"reduce-unique": "^1.0.0",
"reduce-without": "^1.0.0",
"sort-array": "^1.0.0",
"test-value": "^1.0.1"
}
}