forked from shapeshift/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.31 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
{
"name": "@shapeshiftoss/hdwallet",
"version": "0.1.0",
"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": {
"yarn": "yarn",
"lint:ts": "yarn tsc --noEmit",
"format": "yarn prettier .",
"clean": "rm -rf coverage test-report && lerna run clean && lerna clean && rm -rf node_modules && yarn cache clean",
"build": "yarn tsc --build",
"dev:all": "yarn tsc --build --watch",
"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 .",
"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",
"test": "yarn run jest --verbose --config jest.config.js",
"test:ci": "yarn run jest --verbose --runInBand --ci --reporters=default --reporters=jest-junit --coverage --config 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": {
"husky": "^4.2.5",
"jest-junit": "^6.4.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.9.5"
},
"resolutions": {
"**/whatwg-fetch": "^2.0.4"
},
"engines": {
"node": "^10 || ^12"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}