-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.98 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.98 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "walletgenerator.net",
"version": "3.3.0",
"description": "Open Source JavaScript Client-Side Bitcoin Wallet Generator",
"keywords": [
"bitcoin address wallet generator"
],
"bugs": {
"url": "https://github.com/nao20010128nao/WalletGenerator.net/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:nao20010128nao/WalletGenerator.net.git"
},
"license": "MIT",
"author": "nao20010128nao",
"main": "src/init.js",
"scripts": {
"browser": "npm run public ; browser-sync start --config ./bs-config.js",
"init": "npm i",
"postinstall": "node ./util/postinstall.js && husky install",
"lint": "cd src ; find . ../tests/ -type f -name '*.js' ! -name jsqrcode.js ! -path './autogen/*' | xargs eslint",
"pret": "cd src ; find . ../tests/ ../util/ -type f -name '*.js' ! -name jsqrcode.js ! -path './autogen/*' | xargs prettier --print-width 200 --write",
"public": "node ./util/build.js",
"reload": "npm run public ; browser-sync reload",
"standalone": "node ./util/standalone.js",
"start": "npm run browser",
"test": "mocha tests/ --no-timeout",
"wpack": "webpack",
"madge": "madge",
"check-req": "madge --circular ./src/init.js",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"lint-staged": "lint-staged",
"fix-blake2b": "find . -type f -print0 | xargs -0 sed -i 's%ssh://git@github.com/%https://github.com/%'",
"vercel-init": "npm run fix-blake2b && npm run init && npm run postinstall",
"vercel-public": "npm run public && ( yum install -y zip || true ) && zip -9r website.zip public/ && mv website.zip public/"
},
"private": false,
"lint-staged": {
"*.js": [
"prettier --print-width 200 --write",
"eslint",
"git add"
],
"*.png": [
"optipng -strip all -zc1-9 -zm1-9 -zs0-3 -f0-5",
"git add"
],
"*.styl": [
"stylus-supremacy format --replace",
"git add"
],
"*.{json,css}": [
"prettier --print-width 200 --write",
"git add"
]
},
"dependencies": {
"@iota/core": "^1.0.0-beta",
"@nao20010128nao/void-axios": "^1.0.0",
"@nao20010128nao/void-fetch": "^1.0.0",
"@nao20010128nao/void-http": "^1.7.0",
"@nao20010128nao/void-xhr": "^1.0.1",
"base58": "^2.0.1",
"bchaddrjs": "^0.5.2",
"bignumber.js": "^9.0.0",
"bip38": "^3.0.0",
"bitgo-utxo-lib": "^1.8.0",
"bn.js": "^5.0.0",
"browserify-aes": "^1.2.0",
"convert-hex": "^0.1.0",
"convert-string": "^0.1.0",
"elliptic": "^6.4.1",
"ethereumjs-wallet": "^1.0.0",
"keccak": "^3.0.1",
"randombytes": "^2.0.6",
"ripple-keypairs": "^1.0.2",
"safe-buffer": "^5.1.2",
"scryptsy": "^2.0.0",
"tweetnacl": "^1.0.3",
"wif": "^2.0.6"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/eslint-parser": "7.22.5",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/register": "7.22.5",
"@nao20010128nao/acorn-optional-chaining": "0.0.5",
"acorn": "8.8.2",
"acorn-walk": "8.2.0",
"assert": "2.0.0",
"axios": "0.27.2",
"babel-loader": "8.3.0",
"browser-sync": "2.29.3",
"cheerio": "1.0.0-rc.12",
"clean-webpack-plugin": "4.0.0",
"css-loader": "5.2.7",
"eslint": "8.42.0",
"file-loader": "6.2.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"madge": "6.1.0",
"mocha": "10.2.0",
"modernizr": "3.12.0",
"node-dir": "0.1.17",
"node-libs-browser": "2.2.1",
"pinst": "3.0.0",
"prettier": "2.8.8",
"puppeteer": "14.1.2",
"style-loader": "2.0.0",
"stylus": "0.59.0",
"stylus-loader": "4.3.3",
"stylus-supremacy": "2.17.5",
"url-loader": "4.1.1",
"webpack": "4.46.0",
"webpack-cli": "4.10.0"
},
"originalAuthor": "MichaelMure",
"readmeFilename": "README.md",
"madge": {
"detectiveOptions": {
"es6": {
"mixedImports": true
}
}
},
"babel": {
"plugins": [
"@babel/plugin-proposal-optional-chaining"
]
}
}