forked from treverson/imagewallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.76 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
{
"name": "@trinkler/imagewallet",
"description": "A custodian file that is simpler than brainwallets and can be used for the entire blockchain ecosystem.",
"version": "0.5.7",
"author": "Trinkler Software AG <company@trinkler.software>",
"maintainers": [
"Reto Trinkler",
"Mark Greenslade"
],
"contributors": [],
"license": "GPL-3.0",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Trinkler/imagewallet.git"
},
"bugs": {
"url": "https://github.com/Trinkler/imagewallet/issues"
},
"homepage": "https://github.com/Trinkler/imagewallet/issues#readme",
"keywords": [
"cryptocurrencies",
"wallets",
"ux",
"steganography"
],
"scripts": {
"build": "parcel build ./src/index.js -o Imagewallet.js",
"format": "prettier --write './src/**/**/*.js'",
"lint": "eslint src demo",
"demo": "parcel -p 3001 ./demo/public/index.html",
"demo-build": "parcel build ./demo/public/index.html",
"demo-format": "prettier --write './demo/*.js'",
"test": "jest ./test/*"
},
"dependencies": {
"argon2-wasm": "^0.9.0",
"bignumber.js": "^8.0.1",
"bindings": "^1.3.0",
"blake2b": "^2.1.3",
"data-uri-to-buffer": "^2.0.0",
"esm": "^3.0.84",
"jsqr": "^1.1.0",
"keccak": "^1.4.0",
"lodash": "^4.17.11",
"png.js": "^0.2.1",
"qrcode": "^1.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-airbnb": "^2.5.2",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"dom-to-image": "^2.6.0",
"eslint": "^5.2.0",
"eth-crypto": "^1.2.4",
"eth-lib": "^0.2.8",
"file-saver": "^2.0.0-rc.3",
"fs": "^0.0.1-security",
"jest": "^23.6.0",
"jquery": "^3.3.1",
"parcel-bundler": "^1.11.0",
"prettier": "^1.13.7",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.1",
"vue-template-compiler": "^2.5.17",
"vuelidate": "^0.7.4"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [],
"rules": {
"no-use-before-define": 0,
"arrow-body-style": 0,
"dot-notation": 0,
"no-console": 0
},
"env": {}
}
}