-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "zencashjs",
"version": "2.1.0",
"description": "Dead easy to use Horizen JavaScript based library",
"main": "./lib/index.js",
"repository": "https://github.com/HorizenOfficial/zencashjs",
"author": "Kendrick Tan <[email protected]>",
"license": "MIT",
"dependencies": {
"bs58check": "2.1.2",
"create-hash": "1.2.0",
"elliptic": "6.5.4",
"secp256k1": "3.8.0",
"tweetnacl": "1.0.3",
"varuint-bitcoin": "1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^8.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^9.1.3"
},
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel --watch src/ -d lib/",
"clean": "rm -rf ./lib && mkdir lib",
"test": "mocha"
}
}