forked from vechain/thorify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.81 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.81 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
{
"name": "thorify",
"version": "0.3.6",
"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 --timeout 20000 --recursive './**/*.test.ts'",
"cover": "NODE_ENV=test nyc npm t",
"coverall": "NODE_ENV=test nyc npm t && nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/",
"**/*.d.ts",
"src/types.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true
},
"author": "tony.li@vechain.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.3",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"repl-x": "^0.1.4",
"rewiremock": "^3.7.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"web3": "1.0.0-beta.34"
},
"dependencies": {
"blakejs": "^1.1.0",
"debug": "^3.1.0",
"elliptic": "^6.4.0",
"eth-lib": "^0.2.8",
"thor-model-kit": "^0.2.0",
"web3-utils": "1.0.0-beta.34",
"xhr2": "0.1.4"
},
"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"
}