This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
84 lines (84 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "fether",
"description": "Fether Wallet",
"version": "0.4.3",
"private": true,
"author": "Parity Team <[email protected]>",
"maintainers": [
"Axel Chalon",
"Amaury Martiny",
"Thibaut Sardan"
],
"contributors": [],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/fether.git"
},
"bugs": {
"url": "https://github.com/paritytech/fether/issues"
},
"keywords": [
"Ethereum",
"Light",
"Light Client",
"Parity"
],
"homepage": "https://github.com/paritytech/fether",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/electron-builder",
"**/electron-builder/**",
"**/electron-webpack",
"**/electron-webpack/**"
]
},
"engines": {
"node": ">=10.10.0",
"yarn": "^1.4.2"
},
"scripts": {
"postinstall": "yarn fetch-parity",
"build": "lerna run build",
"preelectron": "yarn build",
"electron": "cd packages/fether-electron && yarn electron",
"fetch-parity": "cd scripts && node ./fetch-latest-parity.js",
"lint-files": "FILES='**/*.js' ./scripts/lint-files.sh $FILES",
"lint": "yarn lint-files",
"prepackage": "yarn build",
"package": "cd packages/fether-electron && yarn package",
"release": "cd packages/fether-electron && yarn release",
"start": "npm-run-all -l -p start-*",
"start-electron": "cd packages/fether-electron && yarn start",
"start-react": "cd packages/fether-react && yarn start",
"start-ui": "cd packages/fether-ui && yarn start",
"test": "semistandard '**/*.js' --parser babel-eslint && CI=true lerna run test --parallel",
"update-tokens": "yarn run ts-node --project scripts/updateTokens/tsconfig.json scripts/updateTokens"
},
"husky": {
"hooks": {
"pre-commit": "FILES=`git diff --staged --name-only --diff-filter=d HEAD | grep -E '.js$'`; [ -z \"$FILES\" ] && exit 0; yarn lint-files $FILES; git add $FILES"
}
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"husky": "^1.0.0-rc.13",
"lerna": "^3.18.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.14.2",
"semistandard": "^13.0.1"
},
"dependencies": {
"download": "^7.1.0",
"node-fetch": "^2.3.0",
"semver": "^5.6.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.4000"
},
"resolutions": {
"kind-of": ">=6.0.3"
}
}