forked from shapeshift/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.63 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
{
"name": "@shapeshiftoss/hdwallet",
"version": "1.0.2",
"main": "index.js",
"private": true,
"repository": "https://github.com/shapeshift/hdwallet",
"author": "ShapeShift Open Source <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"integration/*"
],
"nohoist": [
"**/@types/w3c-web-usb",
"**/@types/w3c-web-usb/**",
"**/@types/chrome",
"**/@types/chrome/**",
"**/examples/test/**"
]
},
"scripts": {
"pre-reqs": "npm install -g typescript prettier",
"clean": "lerna run clean --scope @shapeshiftoss/* && rm -rf coverage test-report node_modules && yarn cache clean",
"lint:ts": "tsc --noEmit",
"format": "prettier .",
"build": "yarn tsc --build",
"dev:all": "yarn tsc --build --watch",
"dev:sandbox": "cd examples/sandbox && yarn dev",
"docker:run:emulator": "docker run -p 5000:5000 kktech/kkemu:latest",
"docker:stop:run:emulator": "docker stop $(docker ps -a -q --filter ancestor=kktech/kkemu:latest --format=\"{{.ID}}\") && docker run -p 5000:5000 kktech/kkemu:latest",
"now-build": "lerna run build --scope @shapeshiftoss/hdwallet-core && lerna run build --scope hdwallet-sandbox --ignore @shapeshiftoss/hdwallet-keepkey-nodehid --include-filtered-dependencies && mv examples/sandbox/public .",
"test": "yarn jest --verbose --config jest.config.js",
"test:integration": "yarn jest -c integration/jest.config.js",
"lerna:version": "lerna version --force-publish",
"lerna-bump-version-alpha": "lerna publish --no-push --skip-npm --force-publish '*' prepatch --yes",
"lerna-bump-version-patch": "lerna publish --no-push --skip-npm --force-publish '*' patch --yes",
"lerna-bump-version-minor": "lerna publish --no-push --skip-npm --force-publish '*' minor --yes",
"lerna-bump-version-major": "lerna publish --no-push --skip-npm --force-publish '*' major --yes"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bchaddrjs": "^0.4.0",
"@types/bytebuffer": "^5.0.40",
"@types/crypto-js": "^3.1.9-1",
"@types/debug": "^4.1.2",
"@types/ethereumjs-tx": "^1.0.1",
"@types/google-protobuf": "^3.2.7",
"@types/jest": "^24.9.1",
"@types/node-fetch": "^2.5.7",
"@types/w3c-web-usb": "^1.0.3",
"debug": "^4.2.0",
"jest": "^24.9.0",
"jest-junit": "^6.4.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^24.3.0",
"typedoc": "^0.14.2",
"typescript": "^3.9.7"
},
"resolutions": {
"**/whatwg-fetch": "^2.0.4"
},
"engines": {
"node": "^10 || ^12 || ^14"
}
}