forked from accept-nano/accept-nano-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "@accept-nano/client",
"version": "1.7.2",
"description": "JavaScript client for accept-nano payment gateway.",
"main": "dist/index.js",
"scripts": {
"start": "parcel src/index.html --global acceptNano --no-cache",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build:example": "cp src/index.html example/index.html && replace-in-file ./index.js https://unpkg.com/@accept-nano/client example/index.html",
"build": "parcel build src/index.js --global acceptNano --no-cache --out-file index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/accept-nano/accept-nano-client.git"
},
"keywords": [
"nano",
"cryptocurrency",
"accept-nano",
"payment-gateway"
],
"author": "Altay Aydemir <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/accept-nano/accept-nano-client/issues"
},
"homepage": "https://github.com/accept-nano/accept-nano-client#readme",
"devDependencies": {
"parcel-bundler": "^1.9.4",
"replace-in-file": "^3.4.2"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"axios": "^0.18.0",
"big.js": "^5.2.2",
"qrcode": "^1.2.0",
"redom": "^3.12.6",
"spin.js": "^4.0.0"
}
}