This repository has been archived by the owner on Nov 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "@akashaproject/geth-connector",
"version": "1.8.19",
"description": "Package used by AKASHA to manage geth/web3",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha ./tests/index.js",
"docs": "typedoc index.ts --out docs",
"release": "standard-version",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"geth",
"ethereum",
"akasha",
"web3"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AkashaProject/geth-connector.git"
},
"author": "Marius Darila <kenshy_ripper@yahoo.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/AkashaProject/geth-connector/issues"
},
"engines": {
"node": ">=7.6.0",
"npm": ">=5.0.0"
},
"homepage": "https://github.com/AkashaProject/geth-connector#readme",
"dependencies": {
"@akashaproject/bin-wrapper-progress": "1.0.9",
"@types/bluebird": "3.5.26",
"@types/chai": "4.1.7",
"@types/debug": "4.1.4",
"@types/mocha": "5.2.6",
"@types/node": "11.13.7",
"@types/rimraf": "2.0.2",
"@types/sinon": "7.0.11",
"bluebird": "3.5.4",
"web3": "0.20.7"
},
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.3",
"ethereumjs-testrpc": "6.0.3",
"istanbul": "0.4.5",
"mocha": "6.1.4",
"mocha-lcov-reporter": "1.3.0",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"standard-version": "5.0.2",
"tslint": "5.16.0",
"typescript": "3.4.5"
},
"directories": {
"test": "tests"
}
}