-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "bip21",
"version": "3.0.0",
"description": "A BIP21 compatible URL encoding utility library",
"author": "Daniel Cousens",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bip21.git"
},
"bugs": {
"url": "https://github.com/bitcoinjs/bip21/issues"
},
"homepage": "https://github.com/bitcoinjs/bip21",
"keywords": [
"bip21",
"bitcoin"
],
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.js",
"types": "./index.d.ts"
}
},
"files": [
"index.js",
"index.cjs",
"index.d.ts"
],
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage": "c8 --check-coverage --branches 90 --functions 90 npm run unit",
"standard": "standard --ignore test",
"test": "npm run standard && npm run coverage",
"unit": "tape test/*.js"
},
"dependencies": {
"query-string": "^9.0.0"
},
"devDependencies": {
"c8": "^10.1.2",
"standard": "*",
"tape": "^5.3.0"
}
}