-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
{
"name": "eth-chainlist",
"version": "0.0.589",
"description": "List of EVM Chains",
"main": "index.js",
"scripts": {
"build": "cp -r src/* ./",
"lint": "eslint --ignore-path .gitignore . --ext .js --ext .jsx --ext .ts --ext .tsx",
"format": "prettier \"./**/*.+(ts|js|tsx|jsx)\" --write",
"update-chain": "node scripts/update.js",
"release": "standard-version",
"pre-commit": "lint-staged",
"commit": "cz",
"prepare": "husky install"
},
"lint-staged": {
"./**/*.{ts,js,tsx,jsx}": [
"yarn lint --fix",
"yarn format"
]
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"standard-version": "^9.3.1"
},
"resolutions": {
"minimist": "1.2.6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/poowf/eth-chainlist"
},
"keywords": [
"eth",
"evm",
"chain",
"eth chain"
],
"author": "zanechua",
"contributors": [
{
"name": "Zane J. Chua",
"email": "[email protected]",
"url": "https://zanechua.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/poowf/eth-chainlist/issues"
},
"homepage": "https://github.com/poowf/eth-chainlist#readme"
}