-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "@synonymdev/raw-transaction-decoder",
"author": "synonymdev",
"license": "MIT",
"version": "1.1.0",
"description": "Decodes Raw Bitcoin Transactions",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"test": "yarn build && env mocha --exit -r ts-node/register 'tests/**/*.ts'",
"test:decode": "yarn build && env mocha --exit -r ts-node/register 'tests/decode.test.ts'",
"example": "ts-node example",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/raw-transaction-decoder.git",
"baseUrl": "https://github.com/synonymdev/raw-transaction-decoder"
},
"keywords": [
"Bitcoin"
],
"types": "dist/types/index.d.ts",
"bugs": {
"url": "https://github.com/synonymdev/raw-transaction-decoder/issues"
},
"homepage": "https://github.com/synonymdev/raw-transaction-decoder#readme",
"dependencies": {
"bitcoinjs-lib": "6.1.4"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/mocha": "9.0.0",
"@types/node": "20.4.10",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"chai": "4.3.4",
"eslint": "8.4.1",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"mocha": "10.1.0",
"prettier": "3.0.2",
"ts-node": "^10.9.0",
"typescript": "4.9"
}
}