forked from dmitrykuzmenkov/cc-transaction-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@inbitcoin/ctxbuilder",
"version": "2.6.0",
"description": "High-level abstraction for building Colored Coins transactions",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/inbitcoin/ctxbuilder.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"prettier": "./node_modules/.bin/prettier --write **/*.js **/*.ts **/*.json"
},
"author": "oleiba",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://browny.inbitcoin.it"
},
"dependencies": {
"@inbitcoin/cerrors": "git+https://github.com/inbitcoin/cerrors.git#0.1.6",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.0",
"bitcoinjs-lib": "^3.0.2",
"buffer-reverse": "^1.0.1",
"cc-assetid-encoder": "^0.6.2",
"cc-transaction": "^1.2.1",
"debug": "^2.6.4",
"lodash": "^4.17.15",
"safe-buffer": "^5.0.1"
},
"devDependencies": {
"clone": "^2.1.1",
"husky": "^4.2.5",
"mocha": "^6.1.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"standard": "^10.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --no-restage --bail --pattern \"**/*.ts\" --pattern \"**/*.js\" --pattern \"**/*.json\""
}
}
}