This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
53
54
55
56
{
"name": "@parity/ledger",
"description": "JS interface for Ledger Nano hardware",
"version": "2.1.3",
"main": "lib/index.js",
"author": "Parity Team <[email protected]>",
"maintainers": [
"Jaco Greeff"
],
"contributors": [],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/parity-js/ledger.git"
},
"keywords": [],
"scripts": {
"build": "babel src --out-dir lib --ignore *.spec.js",
"ci:makeshift": "makeshift",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "echo \"WARN: npm run lint:css skipped\"",
"lint:js": "eslint src",
"test": "NODE_ENV=test mocha ./src/*.spec.js",
"test:coverage": "npm run test"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "4.2.0",
"eslint": "^6.0.1",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^9.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^4.0.0",
"makeshift": "^1.1.0",
"mocha": "^7.0.0",
"sinon": "^9.0.0"
},
"dependencies": {
"bignumber.js": "9.0.0",
"ethereumjs-tx": "^2.0.0",
"u2f-api": "1.1.1",
"u2f-api-polyfill": "0.4.4"
}
}