forked from abrkn/bitcoin-json-rpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 961 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
36
37
38
39
40
{
"name": "peercoin-rpc",
"version": "1.0.0",
"description": "Peercoin RPC with type validation",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/peercoin/peercoin-js-rpc"
},
"license": "MIT",
"devDependencies": {
"@types/debug": "4.1.5",
"@types/jest": "25.2.1",
"@types/lodash": "4.14.149",
"@types/node": "12.12.35",
"jest": "25.3.0",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
},
"dependencies": {
"axios": "0.21.1",
"debug": "4.1.1",
"delay": "4.3.0",
"fp-ts": "2.5.3",
"io-ts": "2.2.0",
"lodash": "4.17.21"
},
"bugs": {
"url": "https://github.com/peercoin/peercoin-js-rpc/issues"
},
"homepage": "https://github.com/peercoin/peercoin-js-rpc#readme",
"author": "peercoin"
}