forked from bitcoinjs/bip21
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 885 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 885 Bytes
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
{
"name": "bip21",
"version": "2.0.3",
"description": "A BIP21 compatible URL encoding utility library",
"author": "Daniel Cousens",
"license": "MIT",
"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.js",
"files": [
"index.js"
],
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage": "nyc --check-coverage --branches 90 --functions 90 npm run unit",
"standard": "standard",
"test": "npm run standard && npm run coverage",
"unit": "tape test/*.js"
},
"dependencies": {
"qs": "^6.3.0"
},
"devDependencies": {
"nyc": "^15.0.1",
"standard": "*",
"tape": "^4.9.0"
}
}