forked from WalletConnect/walletconnect-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "walletconnect-monorepo",
"description": "Monorepo for WalletConnect Javascript Libraries",
"private": true,
"keywords": [
"walletconnect",
"ethereum",
"web3",
"crypto"
],
"author": "WalletConnect <walletconnect.org>",
"homepage": "https://walletconnect.org",
"license": "LGPL-3.0",
"scripts": {
"ls": "lerna ls",
"bootstrap": "lerna exec -- npm i && lerna link",
"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",
"lint": "eslint packages/*/src/**/*.js packages/*/test/**/*.spec.js",
"publish": "npm run check-packages && lerna publish",
"check-packages": "npm run clean && npm run lint && npm run build && npm run test"
},
"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.6.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.1",
"lerna": "^3.4.0"
},
"husky": {
"hooks": {
"pre-push": "npm run check-packages"
}
}
}