-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.38 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
{
"name": "vesper-metadata",
"version": "2.112.0",
"description": "Vesper metadata",
"keywords": [
"addresses",
"contracts",
"defi",
"erc-20",
"eth",
"list",
"metadata",
"pools",
"tokenlist",
"tokens",
"vesper",
"vsp"
],
"homepage": "https://vesper.finance",
"license": "MIT",
"author": "Gabriel Montes <gabriel@bloq.com>",
"files": [
"src/*.json"
],
"main": "src/vesper-metadata.json",
"repository": "vesperfi/metadata",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "node scripts/token-list.js",
"test": "mocha",
"version": "node scripts/sync-version.js && git add ${npm_package_main}"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^10.0.0",
"erc-20-abi": "^1.0.0",
"husky": "^4.3.8",
"inquirer": "^8.2.5",
"lint-staged": "^10.5.4",
"mocha": "^9.0.1",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"web3": "^1.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test -- --bail"
}
},
"lint-staged": {
"*.{css,js,json,md}": "npm run format"
},
"prettier": {
"arrowParens": "avoid",
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}