-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "bip136",
"version": "1.0.2",
"description": "A javascript library for encoding and decoding BIP136 TxRefs",
"main": "index.js",
"type": "module",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"coverage": "c8 npm test",
"coverage-ci": "c8 --reporter=lcov npm test",
"lint": "eslint --quiet --fix --cache index.ts",
"lint-check": "eslint index.ts",
"prettier": "prettier index.ts test/*.ts --write",
"prettier-check": "prettier index.ts test/*.ts --check",
"test": "tsx --test test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sangaman/bip136js.git"
},
"keywords": [
"bip136",
"bip 136",
"bip-136",
"txref",
"tx ref"
],
"author": "Daniel McNally <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sangaman/bip136js/issues"
},
"homepage": "https://github.com/sangaman/bip136js#readme",
"dependencies": {
"bech32": "^2.0.0"
},
"files": [
"index.js",
"index.d.ts"
],
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"c8": "^8.0.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.0.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}