-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 Bytes
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
{
"name": "hash-set",
"version": "1.0.1",
"description": "Set with custom equality comparisons",
"license": "MIT",
"repository": "blond/hash-set",
"author": "Andrew Abramov <mail@blond.im> (github.com/blond)",
"keywords": [
"set",
"hash",
"equality",
"comparison",
"sameness",
"same-value-zero"
],
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">= 4.0"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-pedant": "^1.0.0",
"nyc": "^11.2.1"
},
"scripts": {
"test": "npm run lint && npm run cover",
"lint": "eslint .",
"unit-test": "ava",
"cover": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}