-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 802 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 802 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
{
"name": "bcrpc",
"version": "0.4.0",
"description": "Bitcoin RPC wrapper",
"main": "index.js",
"scripts": {
"test": "mocha tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dgarage/bcrpc.git"
},
"bugs": {
"url": "https://github.com/dgarage/bcrpc/issues"
},
"keywords": [
"bitcoin",
"rpc",
"module",
"utility"
],
"author": "Karl-Johan Alm",
"license": "ISC",
"devDependencies": {
"async": "^2.0.1",
"babel-eslint": "^6.1.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0"
}
}