-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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": "@digix/react-ledger-container",
"version": "0.1.10",
"description": "React component for handling Ledger connectivity",
"author": "Chris Hitchcott <hitchcott@gmail.com> (http://hitchcott.com)",
"main": "lib/index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/DigixGlobal/react-ledger-container.git"
},
"scripts": {
"compile": "rm -rf lib/* && ./node_modules/.bin/babel src -d lib",
"prepublish": "npm run compile"
},
"dependencies": {
"ethereumjs-tx": "^1.2.5",
"ethereumjs-util": "^5.1.1",
"@ledgerhq/hw-app-eth": "^5.27.2",
"@ledgerhq/hw-transport-webhid": "^6.0.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^6.10.3"
}
}