forked from BitDesert/nano-node-rpc
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 KB
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
46
47
48
49
50
51
{
"name": "@dev-ptera/nano-node-rpc",
"version": "2.1.0",
"description": "A typescript nanocurrency client used to make node RPC calls.",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"prettier": "prettier \"src/**/**.{ts,js}\" --write",
"test": "yarn build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-ptera/nano-node-rpc.git"
},
"keywords": [
"nano",
"nanocurrency",
"raiblocks",
"node",
"rpc",
"typescript",
"javascript",
"banano",
"client"
],
"bugs": {
"url": "https://github.com/dev-ptera/nano-node-rpc/issues"
},
"homepage": "https://github.com/dev-ptera/nano-node-rpc#readme",
"author": "dev-ptera <dev.ptera@gmail.com>",
"prettier": "@pxblue/prettier-config",
"devDependencies": {
"@pxblue/prettier-config": "^1.0.2",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "~4.0.2"
},
"dependencies": {
"axios": "^0.21.1"
}
}