-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "libra-core",
"version": "1.0.7",
"description": "Typescript Library for Libra",
"engines": {
"node": ">=12.0.0"
},
"engineStrict": true,
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*",
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/perfectmak/libra-core.git"
},
"scripts": {
"build": "tsc",
"build:doc": "markdown-toc -i Readme.md",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"prepare": "npm run build && npm run build:doc",
"prepublishOnly": "npm test && npm run lint",
"test": "jest"
},
"keywords": [
"libra",
"library",
"crypto",
"facebook"
],
"author": "Perfect Makanju",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"elliptic": "^6.4.1",
"futoin-hkdf": "^1.0.3",
"google-protobuf": "^3.8.0",
"grpc": "^1.21.1",
"protobufjs": "^6.8.8",
"sha3": "^2.0.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/elliptic": "^6.4.9",
"@types/google-protobuf": "^3.2.7",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.8",
"grpc_tools_node_protoc_ts": "^2.5.3",
"jest": "^24.8.0",
"markdown-toc": "^1.2.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
}
}