-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 891 Bytes
/
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
{
"name": "lbry",
"version": "0.1.2",
"description": "JS bindings for lbry-daemon and lbrycrd",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "mocha test",
"build": "python ./scripts/jrgen.py > build/lbry.pygen.json && node ./scripts/jrgen.js",
"setup": "mkdir build && cd jrgen-plugin-lbry && npm link && cd .. & npm link jrgen-plugin-lbry"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rynomad/lbry-js.git"
},
"keywords": [
"lbry",
"json-rpc",
"blockchain"
],
"author": "Ryan Bennett",
"license": "MIT",
"bugs": {
"url": "https://github.com/rynomad/lbry-js/issues"
},
"homepage": "https://github.com/rynomad/lbry-js#readme",
"dependencies": {
"fetch-headers": "^2.0.0",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"jrgen": "^2.0.0",
"mocha": "^5.2.0"
}
}