forked from codius/codiusd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.04 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "codiusd",
"version": "1.2.5",
"description": "Codius Host Software",
"homepage": "https://github.com/codius/codiusd#readme",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/**/*.ts",
"src/**/*.js",
"src/**/*.js.map",
"src/**/*.html",
"src/schemas/*.json",
"src/util/*.json"
],
"scripts": {
"build": "npm run schema-to-tsd && npm run compile-ts",
"schema-to-tsd": "node scripts/build-schema-types",
"compile-ts": "tsc --project .",
"lint": "tslint --project .",
"pretest": "npm run build",
"test": "npm run lint && nyc mocha",
"watch": "mocha-typescript-watch",
"prepare": "npm run build",
"start": "node src/index.js"
},
"bin": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/codius/codiusd.git"
},
"keywords": [
"hosting",
"smart-contract",
"vm",
"container",
"pod",
"host",
"server"
],
"author": "Codius Team <info@codius.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/codius/codiusd/issues"
},
"dependencies": {
"@sharafian/cog": "0.0.5",
"@types/handlebars": "^4.0.38",
"@types/inert": "^5.1.1",
"@types/vision": "^5.3.4",
"@types/ws": "^5.1.2",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"canonical-json": "0.0.4",
"debug": "^3.1.0",
"encoding-down": "^5.0.3",
"enjoi": "^3.2.3",
"fs-extra": "^6.0.1",
"h2o2": "^8.1.2",
"handlebars": "^4.0.11",
"hapi": "^17.4.0",
"http-proxy": "^1.17.0",
"ilp-connector": "^21.3.2",
"ilp-fetch": "^1.3.7",
"ilp-plugin": "^3.1.1",
"ilp-plugin-mini-balances": "^1.0.3",
"ilp-protocol-ildcp": "^1.0.0",
"inert": "^5.1.0",
"leveldown": "^4.0.1",
"levelup": "^3.0.1",
"lodash": "^4.17.10",
"memdown": "^3.0.0",
"multi-read-stream": "^2.0.0",
"reduct": "^3.2.0",
"riverpig": "^1.1.3",
"thirty-two": "^1.0.2",
"through2": "^2.0.3",
"vision": "^5.3.3",
"whatwg-fetch": "^2.0.4",
"ws": "^5.2.2"
},
"devDependencies": {
"@types/boom": "^7.2.0",
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "0.0.30",
"@types/fs-extra": "^5.0.2",
"@types/hapi": "^17.0.12",
"@types/lodash": "^4.14.108",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.4",
"@types/sinon": "^4.3.1",
"@types/through2": "^2.0.33",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"json-schema-to-typescript": "^5.5.0",
"mocha": "^5.1.1",
"mocha-typescript": "^1.1.12",
"nyc": "^11.7.1",
"sinon": "^5.0.4",
"source-map-support": "^0.5.5",
"ts-node": "^6.0.2",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.3"
},
"nyc": {
"check-coverage": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}