-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
88 lines (88 loc) · 2.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "bech32-buffer",
"version": "0.2.1",
"description": "Bech32(m) encoding for byte buffers",
"repository": {
"type": "git",
"url": "https://github.com/slowli/bech32-buffer.git"
},
"bugs": {
"url": "https://github.com/slowli/bech32-buffer/issues"
},
"engines": {
"node": ">=14"
},
"main": "lib/index.js",
"files": [
"lib",
"dist",
"examples",
"index.d.ts",
"CHANGELOG.md"
],
"types": "index.d.ts",
"scripts": {
"test": "npm-run-all test:*",
"test:unit": "mocha -r @babel/register",
"test:browser": "web-test-runner",
"test:ts": "npm run prepare:compile && tsc -p test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --ignore-path .gitignore --ext js,mjs .",
"lint:types": "flow check",
"cover": "cross-env NODE_ENV=test nyc mocha",
"cover:report": "nyc report",
"minify-qr": "cross-env BABEL_ENV=browser browserify node_modules/qrcode-generator/qrcode.js -t [ babelify ] --standalone qrcode -o examples/qrcode.min.js",
"prepare": "npm-run-all prepare:*",
"prepare:compile": "babel src/ -d lib/",
"prepare:browser": "mkdirp dist && cross-env BABEL_ENV=browser browserify src/index.js -t [ babelify ] --standalone bech32 -o dist/bech32-buffer.min.js"
},
"keywords": [
"bech32",
"bech32m",
"base32",
"bitcoin"
],
"author": "Alex Ostrovski <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-flow": "^7.22.5",
"@babel/register": "^7.22.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@types/chai": "^4.2.22",
"@web/dev-server-rollup": "^0.6.1",
"@web/test-runner": "^0.19.0",
"babel-plugin-istanbul": "^7.0.0",
"babel-preset-minify": "^0.5.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chai": "^5.0.3",
"chai-bytes": "slowli/chai-bytes#ea66079",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.24.2",
"flow-bin": "^0.252.0",
"mkdirp": "^3.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"qrcode-generator": "^1.4.4",
"typescript": "^5.2.2"
},
"nyc": {
"require": [
"@babel/register"
],
"exclude": [
"lib",
"test"
],
"sourceMap": false,
"instrument": false
}
}