forked from WalletConnect/walletconnect-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.82 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
{
"name": "walletconnect-monorepo",
"description": "Monorepo for WalletConnect",
"private": true,
"keywords": [
"walletconnect",
"ethereum",
"web3",
"crypto"
],
"author": "WalletConnect <walletconnect.org>",
"homepage": "https://github.com/WalletConnect/walletconnect-monorepo/tree/v1.0.0-beta",
"license": "LGPL-3.0",
"scripts": {
"ls": "lerna ls",
"bootstrap": "npm install && lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"test:watch": "lerna run test:watch",
"clean": "lerna run clean",
"clean:node_modules": "lerna exec -- rm -rf node_modules",
"clean:package_lock": "lerna exec -- rm -rf package-lock.json",
"clean:all": "npm run clean && npm run clean:node_modules && npm run clean:package_lock",
"lint": "tslint packages/*/src/**/*.ts",
"publish": "lerna publish",
"publish:beta": "lerna version && lerna exec -- npm publish",
"routine": "npm run clean:all && npm run bootstrap && npm run check-packages",
"check-packages": "npm run clean && npm run lint && npm run build",
"deploy": "npm run check-packages && npm run publish",
"deploy:beta": "npm run routine && git commit -am 'package.lock' && npm run publish:beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lerna": "^3.13.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4"
}
}