This repository has been archived by the owner on Jul 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 1.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
{
"name": "thor-model-kit",
"version": "0.3.1",
"description": "Typescript library defines VeChain Thor data models, to aid DApp development",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -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"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/vechain/thor-model-kit.git"
},
"keywords": [
"vechain",
"thor",
"blockchain",
"models",
"dapp",
"crypto",
"mnemonic",
"keystore"
],
"author": "vechain.org",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/vechain/thor-model-kit/issues"
},
"homepage": "https://github.com/vechain/thor-model-kit#readme",
"devDependencies": {
"@types/bip39": "^2.4.0",
"@types/chai": "^4.1.3",
"@types/hdkey": "^0.7.0",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"ts-node": "^6.1.0",
"typescript": "^2.9.1"
},
"dependencies": {
"bignumber.js": "^7.2.1",
"bip39": "^2.5.0",
"blakejs": "^1.1.0",
"hdkey": "^1.0.0",
"keccak": "^1.4.0",
"keythereum": "^1.0.4",
"rlp": "^2.0.0",
"secp256k1": "^3.5.0"
}
}