forked from rango-exchange/token-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 835 Bytes
/
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
{
"name": "rango-token-list",
"version": "0.1.0",
"description": "Rango Community Token List",
"main": "index.js",
"repository": "[email protected]:rango-exchange/rango-token-list.git",
"author": "RanGojo <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"private": true,
"scripts": {
"eslint": "eslint tokens/* --ext .json --fix",
"prepare": "husky install",
"generate-token-list": "node ./scripts/generate.mjs"
},
"lint-staged": {
"**.{json}": [
"prettier --write ."
]
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.7.1",
"glob": "^10.3.3",
"husky-init": "^8.0.0"
},
"dependencies": {}
}