-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "ethereum-bloom-filters",
"version": "1.2.0",
"description": "Ability to test bloom filters for ethereum.",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run build-web-scripts",
"watch": "tsc --watch",
"test": "jest",
"publish-sdk": "npm run build && npm publish --access public",
"build-web-scripts": "tsc && gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshstevens19/ethereum-bloom-filters.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshstevens19/ethereum-bloom-filters/issues"
},
"homepage": "https://github.com/joshstevens19/ethereum-bloom-filters#readme",
"keywords": [
"ethereum",
"blockchain",
"blooms",
"bloom",
"bloom filters"
],
"dependencies": {
"@noble/hashes": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"browserify": "^16.5.0",
"gulp": "^4.0.2",
"gulp-uglify-es": "^3.0.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}