-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "eosjs-ledger-signature-provider",
"version": "0.1.2",
"description": "A Signature provider for communicating with eosjs from a Ledger device.",
"author": {
"name": "block.one",
"url": "https://www.block.one"
},
"contributors": [
"Randy Torres",
"Brandon Fancher"
],
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -c tslint.json src/*.ts",
"build": "yarn clean & tsc -p ./tsconfig.json",
"clean": "rm -rf dist",
"coverage": "jest --coverage",
"test": "jest",
"prepublish": "yarn build",
"docs": "typedoc --excludePrivate --excludeProtected --out ./docs --theme markdown"
},
"dependencies": {
"@babel/core": "7.6.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@ledgerhq/hw-transport": "4.48.0",
"@ledgerhq/hw-transport-u2f": "4.48.0",
"asn1-ber": "1.0.9",
"bip32-path": "0.4.2",
"buffer": "5.2.1",
"eosjs": "20.0.0",
"eosjs-ecc": "4.0.4"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@blockone/tslint-config-blockone": "^4.0.0",
"@types/node": "^11.9.4",
"babel-polyfill": "^6.26.0",
"jest": "^24.1.0",
"ts-jest": "^23.10.4",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.13.0",
"typedoc-plugin-markdown": "^1.1.19",
"typescript": "^3.2.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(ts?|tsx?)$"
}
}