-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.65 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
{
"version": "4.2.2",
"name": "@asset-projects/token-list",
"description": "List of tokens on Ethereum and Ethereum-compatible chains",
"author": "@asset-projects",
"license": "MIT",
"homepage": "https://github.com/asset-projects/token-list#readme",
"bugs": {
"url": "https://github.com/asset-projects/token-list/issues"
},
"keywords": [
"asset-projects",
"ethereum",
"token",
"optimism",
"arbitrum",
"polygon",
"binance",
"avalanche",
"ERC20",
"ERC721",
"ERC1155",
"Fungible Token",
"NFT"
],
"main": "lib/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"/src",
"/lib",
"/README.md",
"/LICENSE"
],
"scripts": {
"test": "jest",
"type-check": "tsc --pretty --noEmit",
"test-all": "yarn type-check && yarn test",
"lint": "eslint . && prettier --check .",
"format": "eslint --fix . && prettier --write .",
"build": "rimraf ./lib && tsc",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-jest": "^27.4.5",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^27.4.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"tslib": "^2.4.0",
"typescript": "4.7.2"
}
}