-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
68
69
70
{
"name": "@iov/ledger-iovns",
"version": "2.1.1",
"description": "Integration of ledger-cosmos-1 application",
"author": "IOV SAS <admin@iov.one>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "types/index.d.ts",
"files": [
"build/",
"types/",
"*.md",
"!**/scripts/",
"!*.spec.*",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "https://github.com/iov-one/iov-ledger-iovns"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"deploy": "yarn lint && yarn build && yarn test && npm publish",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\"",
"docs": "shx rm -rf docs && typedoc --options typedoc.js",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\" && tslint -t verbose --project .",
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
"test-node": "node jasmine-testrunner.js",
"test": "yarn build-or-skip && yarn test-node",
"move-types": "shx rm -r ./types/* && shx mv build/types/* ./types && shx rm ./types/*.spec.d.ts",
"build": "shx rm -rf ./build && tsc && yarn move-types",
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build"
},
"resolutions": {
"minimist": "^1.2.5"
},
"dependencies": {
"@ledgerhq/hw-transport": "^5.11.0"
},
"devDependencies": {
"@cosmjs/crypto": "^0.21.1",
"@cosmjs/encoding": "^0.21.1",
"@ledgerhq/hw-transport-node-hid": "^5.11.0",
"@ledgerhq/hw-transport-u2f": "^5.11.0",
"@ledgerhq/hw-transport-webusb": "^5.11.0",
"@types/jasmine": "^3.3.7",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.1",
"@types/node-hid": "^0.7.2",
"@types/semver": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-simple-import-sort": "^4.0.0",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"prettier": "^1.18.2",
"semver": "^6.3.0",
"shx": "^0.3.2",
"source-map-support": "^0.5.13",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^5.1.0",
"typedoc": "^0.14.2",
"typescript": "~3.9"
}
}