-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.22 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": "root",
"license": "Apache-2.0",
"homepage": "https://github.com/bigchaindb/js-bigchaindb-wallet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bigchaindb/js-bigchaindb-wallet.git"
},
"bugs": {
"url": "https://github.com/bigchaindb/js-bigchaindb-wallet/issues"
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"set-env": "read -p 'NPM_TOKEN: ' NPM_TOKEN && echo NPM_TOKEN=$NPM_TOKEN > .env",
"bootstrap": "npm install lerna && lerna bootstrap && npm install",
"format": "prettier --write \"packages/**/*.{ts,json}\"",
"reset": "npm run cleanup && rimraf -rf node_modules && npm run bootstrap",
"test": "lerna run test",
"test:key-derivation": "lerna run --scope @bigchaindb/wallet-hd test",
"test:plugins": "lerna run --scope @bigchaindb/wallet-plugins test",
"test:jwt": "lerna run --scope @bigchaindb/jwt test",
"test:cov": "lerna run test:cov && node merge-coverage.js",
"build": "npm run cleanup && lerna run compile",
"cleanup": "lerna run cleanup --stream --parallel",
"lint": "lerna run lint",
"lint:staged": "lint-staged",
"prepare": "npm run format && npm run lint",
"prepublishOnly": "npm run build",
"version": "lerna version",
"release": "npm run version && lerna publish from-package",
"publish": "lerna publish"
},
"devDependencies": {
"@lerna/publish": "4.0.0",
"@lerna/run": "4.0.0",
"@types/jest": "27.4.0",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.1.4",
"jest": "^27.5.1",
"jest-junit": "13.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "3.12.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
]
},
"pre-commit": [
"lint:staged"
]
}