-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.01 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
42
43
{
"name": "nkn-shell-daemon",
"version": "1.1.0",
"description": "NKN Shell Daemon",
"main": "nshd.js",
"bin": {
"nshd": "nshd.js"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"debug": "nodemon --exec babel-node -- src",
"build": "babel src --out-dir lib --ignore 'src/**/*.spec.js','src/**/*.test.js'",
"start": "node ./nshd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nknorg/nkn-shell-daemon.git"
},
"keywords": [
"NKN",
"blockchain",
"distributed system"
],
"author": "NKN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nknorg/nkn-shell-daemon/issues"
},
"homepage": "https://nkn.org",
"dependencies": {
"nkn-sdk": "^1.1.7",
"node-pty": "^0.9.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@types/yargs": "^13.0.3"
}
}