-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "nanocurrency-rpc-bindings",
"version": "0.2.1",
"description": "JavaScript and TypeScript bindings for Nano currency RPC calls",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build:live",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --watch 'openapi/*.yaml' --exec \"ts-node\" src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nano",
"nanocurrency",
"banano",
"crypto",
"cryptocurrency"
],
"repository": {
"type": "git",
"url": "git@github.com:pskillen/nano-rpc-bindings-js.git"
},
"bin": {
"nano-types": "dist/index.js"
},
"author": "Patrick Skillen - pskillen@gmail.com",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"nanocurrency": "^2.5.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}