forked from Uniswap/default-token-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "@419Labs/default-token-list",
"version": "3.0.0",
"description": "◦ The 419Labs default token list",
"main": "build/419labs-default.tokenlist.json",
"scripts": {
"test": "mocha",
"clean": "rimraf build",
"build": "npm run clean && npm run build_l1 && npm run build_l2",
"build_l1": "rimraf build/419labs-default-l1.tokenlist.json && mkdir -p build && node src/write.js L1 > build/419labs-default-l1.tokenlist.json",
"build_l2": "rimraf build/419labs-default-l2.tokenlist.json && mkdir -p build && node src/write.js L2 > build/419labs-default-l2.tokenlist.json",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"build/419labs-default.tokenlist.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/419Labs/default-token-list.git"
},
"keywords": [
"419Labs",
"default",
"token",
"list"
],
"author": "Moody Salem",
"maintainers": ["Aebischer Lenny"],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/419Labs/default-token-list/issues"
},
"homepage": "https://github.com/419Labs/default-token-list#readme",
"devDependencies": {
"@ethersproject/address": "^5.0.2",
"@uniswap/token-lists": "^1.0.0-beta.8",
"ajv": "^6.12.3",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"rimraf": "^3.0.2"
}
}