This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.78 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": "thorify",
"version": "1.4.0",
"description": "A web3 adaptor for VeChain Thor RESTful HTTP API.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "tslint --fix -p .",
"prepare": "rm -rf dist/; npm run build",
"test": "NODE_ENV=test mocha --require ts-node/register/transpile-only --timeout 20000 --exclude './test/browser/*.ts' --exclude './test/web3/eth.test.ts' --exclude './test/provider/simple-http.test.ts' './**/*.test.ts'",
"test:repu": "NODE_ENV=test mocha --require ts-node/register/transpile-only --timeout 20000 --exclude './test/browser/*.ts' './test/provider/repu-methods.test.ts'",
"cover": "NODE_ENV=test nyc npm t",
"coverall": "NODE_ENV=test nyc npm t && nyc report --reporter=text-lcov | coveralls",
"test:browser": "TS_NODE_PROJECT=\"test/browser/tsconfig.webpack.json\" webpack --config test/browser/webpack.test.config.ts && open test/browser/index.html"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/",
"**/*.d.ts",
"src/types.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^12.7.5",
"@types/webpack": "^4.4.11",
"@types/ws": "^6.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^14.1.1",
"repl-x": "^0.1.4",
"rewiremock": "^3.7.2",
"ts-loader": "^5.1.1",
"ts-node": "^8.3.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"web3": "^1.2.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"debug": "^3.1.0",
"eventemitter3": "^3.1.0",
"isomorphic-ws": "^4.0.1",
"thor-devkit": "^1.1.0",
"web3-core-subscriptions": "^1.2.1",
"ws": "^6.0.0",
"xhr2": "0.1.4"
},
"peerDependencies": {
"web3": "1.*"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vechain/thorify.git"
},
"keywords": [
"thor",
"web3",
"vechain",
"blockchain",
"smart",
"contract"
],
"bugs": {
"url": "https://github.com/vechain/thorify/issues"
},
"homepage": "https://vechain.github.io/thorify"
}