-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
52
53
54
55
{
"name": "hybrixd",
"version": "0.5.1",
"description": "The network agent for the Internet of Coins hybrix node",
"main": "lib/hybrixd.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"node-gyp": "^3.8.0",
"progress": "^2.0.0",
"stdio": "^0.2.7",
"teletype": "^0.2.0",
"ws": "^6.0.0"
},
"devDependencies": {
"eslint": "^5.8.0",
"uglify-es": "^3.3.9",
"cssmin": "^0.4.3"
},
"engines": {
"node": ">=8.12.0 <9.0.0"
},
"scripts": {
"start": "./hybrixd",
"setup": "sh scripts/npm/setup.sh",
"build": "",
"compile": "sh scripts/npm/compile.sh",
"docs": "sh scripts/docs/docs.sh",
"diag": "sh scripts/npm/diag.sh",
"release": "sh scripts/npm/compile.sh",
"release:start": "sh scripts/npm/compile.sh; sh ./dist/hybrixd",
"cluster:start": "sh scripts/npm/cluster.sh",
"lint": "sh ../common/scripts/lint/lint.sh node",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/iochq/hybrixd.git"
},
"keywords": [
"cryptocurrency",
"blockchain",
"coin",
"transactional",
"operating",
"system"
],
"author": "Internet of Coins",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://gitlab.com/iochq/hybrixd/issues"
},
"homepage": "https://gitlab.com/iochq/hybrixd#README"
}