-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "debitpay",
"version": "1.2.8",
"description": "Simple app which decodes Bitpay payment links into Bitcoin transaction requirements, so that you could make the payments with Bitcoin wallets not supporting Bitpay.",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "yarn version",
"postversion": "git push --follow-tags"
},
"author": "Alex Kaul",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"style-loader": "^2.0.0",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"bootstrap": "^4.5.3",
"clipboard": "^2.0.6",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"qrcode-generator": "^1.4.0",
"sha.js": "^2.4.11",
"url-parse": "^1.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/alexk111/DeBitpay.git"
}
}