forked from parity-js/qr-signer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "@parity/qr-signer",
"version": "0.3.2",
"description": "A React Component that handles generating and scanning QR codes compatible with Parity Signer",
"author": "Parity Technologies Ltd. <[email protected]>",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "[email protected]:Parity-JS/qr-signer"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"test": "echo 'no tests yet'",
"lint": "echo 'no linting yet'",
"build": "rollup -c",
"start": "rollup -c -w",
"prepublish": "npm run build"
},
"dependencies": {
"@parity/erc681": "0.1.1",
"qrcode-generator": "1.4.4",
"react-qr-reader": "2.2.1"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^0.14.9 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.9 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"gh-pages": "^2.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "^3.0.0",
"rollup": "^0.68.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.0.0",
"rollup-plugin-postcss": "^2.0.1"
},
"files": [
"dist"
]
}