forked from WalletConnect/walletconnect-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 947 Bytes
/
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
{
"name": "walletconnect-utils",
"description": "Monorepo for Javascript Utilities for WalletConnect",
"private": true,
"author": "WalletConnect <walletconnect.org>",
"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 --hoist",
"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"
},
"devDependencies": {
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"tsc": "^2.0.3"
}
}