-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nelson.cli",
"version": "0.2.2",
"repository": {
"type": "git",
"url": "https://github.com/SemkoDev/nelson.cli.git"
},
"description": "P2P manager for IOTA's IRI node",
"main": "dist/index.js",
"bin": {
"nelson": "./dist/nelson.js"
},
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules --ignore __tests__ --copy-files",
"make:binaries": "pkg -t node6-linux,node6-win,node6-macos --out-path bin dist/nelson.js",
"make": "npm run test && npm run build && npm run make:binaries"
},
"keywords": [
"blockchain",
"IOTA",
"tangle",
"p2p"
],
"homepage": "https://semkodev.com",
"author": "Roman Semko <roman@deviota.com> (http://twitter.com/RomanSemko)",
"license": "ISC",
"jest": {
"testMatch": [
"**/__tests__/**/*-test.js?(x)"
]
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"commander": "^2.11.0",
"external-ip": "^1.3.1",
"httpdispatcher": "^2.1.1",
"ini": "^1.3.5",
"iota.lib.js": "^0.4.3",
"ip": "^1.1.5",
"json2csv": "^3.11.5",
"md5": "^2.2.1",
"moment": "^2.19.4",
"moment-duration-format": "^2.0.1",
"nedb": "^1.8.0",
"request": "^2.83.0",
"tmp": "^0.0.33",
"weighted": "^0.3.0",
"ws": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"colors": "^1.1.2",
"jest": "^21.2.1",
"pkg": "^4.3.0-beta.1",
"rimraf": "^2.6.2"
}
}