-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "@bpanel/mempool-widget",
"version": "0.2.0",
"description": "A simple widget for the bPanel dashboard to display current mempool size and tx count",
"main": "dist/index.js",
"repository": "[email protected]:bpanel-org/mempool-widget.git",
"scripts": {
"babel": "babel --presets=env,stage-3 lib -d dist",
"watch": "babel --presets=env,stage-3 lib -d dist --watch",
"clean": "rm -f ./dist/*.js",
"lint": "eslint lib/ test/ || exit 0",
"prepublish": "make babel",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"bpanel",
"bcoin",
"mempool",
"blockchain"
],
"author": "bcoin-org",
"license": "MIT",
"dependencies": {
"@bpanel/chain-sockets": "0.0.2",
"@bpanel/dashboard": "0.0.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.6.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"react": "^16.2.0"
}
}