-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hash-set-map",
"version": "2.0.0",
"description": "Set and Map extension to prove a custom key derivation function",
"main": "build/index.js",
"typings": "build/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/tape": "^4.13.0",
"browserify": "^16.5.1",
"coveralls": "^3.1.0",
"nyc": "^15.0.1",
"tap-nyc": "^1.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"scripts": {
"prebrowser": "tsc",
"browser": "browserify build/test/map.spec.js build/test/set.spec.js > test/test_bundle.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "tsc",
"prepublish": "tsc",
"test": "tape build/test/**/*.spec.js | tap-spec",
"test-cover": "nyc tape build/test/**/*.spec.js | tap-nyc",
"tslint": "tslint index.ts ./test/**/.ts ./src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaselIT/hash-set-map.git"
},
"author": "Federico Caselli",
"license": "MIT",
"keywords": [
"Set",
"Map",
"ES6",
"key derivation function",
"JSON",
"serialize",
"deserialize"
],
"bugs": {
"url": "https://github.com/CaselIT/hash-set-map/issues"
},
"homepage": "https://github.com/CaselIT/hash-set-map#readme",
"files": [
"build/index*",
"build/src/**/*",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=10.x"
},
"nyc": {
"reporter": [
"html",
"text"
]
}
}