-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "@glosfer/hyconjs-util",
"version": "0.1.4",
"description": "Common javascript functions for Hycon",
"main": "lib/src/index.js",
"scripts": {
"build": "tsc --declaration",
"lint": "tslint -p tsconfig.json",
"test": "ts-node node_modules/jasmine/bin/jasmine test/*",
"protogen": "pbjs -t static-module -w commonjs -o src/serialization/proto.js proto/tx.proto && pbts -o src/serialization/proto.d.ts src/serialization/proto.js"
},
"keywords": [
"hycon",
"utils",
"hyc"
],
"repository": {
"type": "git",
"url": "git://github.com/Team-Hycon/hyconjs-util.git"
},
"bugs": {
"url": "https://github.com/Team-Hycon/hyconjs-util/issues"
},
"homepage": "https://github.com/Team-Hycon/hyconjs-util",
"publishConfig": {
"access": "public"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bip39": "^2.4.0",
"base-58": "0.0.1",
"bip39": "^2.5.0",
"blake2b": "^2.1.2",
"hdkey": "^1.1.0",
"long": "^4.0.0",
"protobufjs": "^6.8.8",
"secp256k1": "^3.5.2"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/long": "^4.0.0",
"@types/node": "^10.5.1",
"jasmine": "^3.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
}
}