forked from WalletConnect/walletconnect-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "walletconnect-monorepo",
"description": "Monorepo for WalletConnect",
"private": true,
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "Apache-2.0",
"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",
"commit-version": "node ops/js/commit-version.js",
"new-version": "lerna version --no-git-tag-version",
"pre-publish": "run-s new-version reset commit-version",
"npm-publish:experimental": "lerna exec -- npm publish --access public --tag experimental",
"npm-publish:canary": "lerna exec -- npm publish --access public --tag canary",
"publish:experimental": "run-s pre-publish npm-publish:experimental",
"publish:canary": "run-s pre-publish npm-publish:canary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
},
"devDependencies": {
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5"
}
}