forked from WalletConnect/walletconnect-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.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
{
"name": "walletconnect-utils",
"description": "Monorepo for Javascript Utilities for WalletConnect",
"private": true,
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "MIT",
"homepage": "https://github.com/WalletConnect/walletconnect-utils/",
"repository": {
"type": "git",
"url": "git+https://github.com/WalletConnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/WalletConnect/walletconnect-utils/issues"
},
"scripts": {
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap",
"lint": "lerna run lint",
"build": "lerna run build",
"test": "lerna run test",
"check": "run-s lint build test",
"reset": "run-s clean bootstrap check",
"new-version": "lerna version --no-git-tag-version",
"pre-publish": "run-s new-version reset",
"npm-publish:latest": "lerna exec -- npm publish --access public --tag latest",
"audit:prod": "lerna exec --no-bail -- npm audit --omit dev",
"audit:all": "lerna exec --no-bail -- npm audit",
"audit:fix": "lerna exec --no-bail -- npm audit fix"
},
"devDependencies": {
"lerna": "^6.5.1",
"npm-run-all": "^4.1.5",
"tsc": "^2.0.3"
},
"optionalDependencies": {
"@nrwl/nx-linux-x64-gnu": "^15.9.2"
}
}