-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 2.59 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
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
{
"name": "oracle-server",
"version": "0.2.0",
"description": "Off-chain oracle server for listening on data requests from Ethereum blockchain",
"main": "src/index.ts",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc",
"coverage": "mocha --require ts-node/register/transpile-only -r tsconfig-paths/register --require source-map-support/register --recursive src/**/*.spec.ts",
"test": "mocha -r ts-node/register -r tsconfig-paths/register src/**/*.spec.ts",
"integration-test": "mocha -r ts-node/register -r tsconfig-paths/register src/**/*.integration.ts",
"ganache": "ganache-cli -d",
"lint": "tslint --config ./tslint.json --project ./tsconfig.json src/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/espeo/blockchain-oracle-server.git"
},
"author": "Espeo Blockchain",
"license": "ISC",
"bugs": {
"url": "https://github.com/espeo/blockchain-oracle-server/issues"
},
"homepage": "https://github.com/espeo/blockchain-oracle-server",
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"**/*.integration.ts",
"**/*Port.ts",
"dist/**/*.js"
],
"reporter": [
"text-lcov"
],
"all": true
},
"dependencies": {
"axios": "0.19.0",
"delay": "4.1.0",
"dotenv": "6.0.0",
"eth-crypto": "1.4.0",
"execution-time": "1.3.0",
"express": "4.16.3",
"ffi": "2.3.0",
"jsonpath": "1.0.2",
"lodash": "4.17.12",
"mongoose": "5.7.5",
"node-schedule": "1.3.0",
"ref": "1.3.5",
"web3": "1.0.0-beta.36",
"web3-eth-contract": "1.0.0-beta.55",
"web3-utils": "1.0.0-beta.55",
"websocket": "1.0.26",
"winston": "3.0.0",
"xmldom": "0.1.27",
"xpath": "0.0.27"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.0",
"@types/ffi": "0.2.2",
"@types/jsonpath": "0.2.0",
"@types/lodash": "4.14.134",
"@types/mocha": "5.2.7",
"@types/mongoose": "5.5.6",
"@types/web3": "1.0.19",
"@types/xmldom": "0.1.29",
"@types/nock": "10.0.3",
"@types/ref": "0.0.28",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.2",
"dirty-chai": "2.0.1",
"ganache-cli": "6.1.8",
"mocha": "5.2.0",
"nock": "9.6.1",
"nyc": "14.1.1",
"redux-devtools": "3.5.0",
"sinon": "7.1.1",
"sinon-mongoose": "2.2.1",
"ts-node": "8.3.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.17.0",
"typescript": "3.5.2"
}
}