forked from LedgerHQ/ledgerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.49 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
{
"name": "ledger-libs",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') === -1) { console.log('\u001b[31mPlease use yarn\u001b[0m'); process.exit(1); }\"",
"postinstall": "(cd ./flow-support && yarn)",
"prettier": "prettier --write 'packages/*/src/**/*.?s'",
"test": "jest",
"test-no-git-diff": "git diff --exit-code || exit 1",
"doc": "lerna run doc",
"lint": "eslint packages/**/src --no-error-on-unmatched-pattern --ext .ts,.tsx -c .eslintrc.json",
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"clean": "rm -rf node_modules packages/*/node_modules/ packages/*/lib",
"rebuild": "lerna run clean && lerna run build",
"publish": "yarn && lerna run clean && lerna run build && lerna publish --registry=https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"browserify": "^17.0.0",
"create-hash": "^1.1.3",
"documentation": "^13.1.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"lerna": "3.22.1",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.5",
"uglify-js": "^3.13.10"
},
"dependencies": {
"js-levenshtein": "^1.1.6"
}
}