-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.13 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.13 KB
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
48
49
50
51
52
{
"devDependencies": {
"benchmark": "^2.1.0",
"husky": "^0.11.4",
"jsdoc-to-markdown": "^2.0.0",
"lodash.range": "^3.1.4",
"nyc": "^8.3.1",
"tape": "^4.5.1"
},
"name": "set-helpers",
"version": "1.3.1",
"description": "Helpers for Set objects.",
"main": "index.js",
"dependencies": {},
"scripts": {
"test": "nyc -x spec/ -x node_modules/ tape spec/*.js",
"posttest": "rm -rf .nyc_output",
"docs": "jsdoc2md functions/*.js > api.md",
"precommit": "npm run test && npm run docs"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"set",
"difference",
"every",
"filter",
"find",
"first",
"intersection",
"subset",
"superset",
"join",
"last",
"map",
"reduce",
"some",
"toArray",
"union"
],
"author": "Tyler Murphy <tylermurphyj@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Tyler-Murphy/set-helpers.git"
},
"bugs": {
"url": "https://github.com/Tyler-Murphy/set-helpers/issues"
},
"homepage": "https://github.com/Tyler-Murphy/set-helpers#readme"
}