-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 943 Bytes
/
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
{
"name": "@abckey/crypto-helper",
"version": "0.2.2",
"description": "A Blockchain Crypto Helper.",
"author": "abckey <hi@abckey.com>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"tsc:check": "tsc --noEmit",
"tsc:watch": "tsc:check -- --watch",
"build": "tsc",
"prepare": "tsc",
"test": "tsc & ava --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/abcKeyCOM/crypto-helper.git"
},
"devDependencies": {
"@types/node": "^13.7.2",
"ava": "^3.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"base-x": "^3.0.7",
"bech32": "^1.1.3",
"bignumber.js": "^9.0.0",
"blake-hash": "^1.1.0",
"blakejs": "^1.1.0",
"crypto-js": "^4.0.0"
},
"files": [
"dist"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}