2019-08-09 22:46:58 +00:00
|
|
|
{
|
|
|
|
"name": "assets",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Assets consumed by Trust Wallet",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2019-11-08 18:55:41 +00:00
|
|
|
"test": "npm run cleanup && jest",
|
2019-11-12 21:26:53 +00:00
|
|
|
"cleanup": "find ./.. -iname '.DS_Store' -type f -delete",
|
2019-11-08 18:55:41 +00:00
|
|
|
"update-bep2": "node ./script/updateBEP2",
|
2019-11-19 20:22:38 +00:00
|
|
|
"checksum-erc20": "npm run cleanup && node ./script/erc20_to_checksum",
|
|
|
|
"list": "npm run cleanup && ts-node ./script/gen_list",
|
2019-11-20 07:29:19 +00:00
|
|
|
"resize": "npm run cleanup && ts-node ./script/resize_images",
|
|
|
|
"map-cmc": "ts-node ./pricing/coinmarketcap/script"
|
2019-08-09 22:46:58 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/trustwallet/assets.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"ERC20 token images",
|
|
|
|
"TRC-10 token images",
|
2019-09-26 17:36:59 +00:00
|
|
|
"TRC-20 token images",
|
2019-08-09 22:46:58 +00:00
|
|
|
"BEP-2 token images"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0"
|
|
|
|
},
|
|
|
|
"author": "Trust Wallet",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/trustwallet/assets/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/trustwallet/assets#readme",
|
|
|
|
"devDependencies": {
|
2019-11-08 18:55:41 +00:00
|
|
|
"@trustwallet/types": "^0.1.16",
|
2019-11-20 07:29:19 +00:00
|
|
|
"@types/jest": "^24.0.23",
|
2019-11-08 18:55:41 +00:00
|
|
|
"@types/jest-expect-message": "^1.0.1",
|
2019-11-20 07:29:19 +00:00
|
|
|
"axios": "^0.19.0",
|
|
|
|
"bip44-constants": "^8.0.5",
|
|
|
|
"bluebird": "^3.7.1",
|
|
|
|
"chalk": "^3.0.0",
|
2019-11-08 18:55:41 +00:00
|
|
|
"ethereum-checksum-address": "0.0.5",
|
2019-11-20 07:29:19 +00:00
|
|
|
"eztz-lib": "^0.1.2",
|
|
|
|
"image-size": "^0.8.3",
|
2019-11-08 18:55:41 +00:00
|
|
|
"jest": "^24.9.0",
|
|
|
|
"jest-expect-message": "^1.0.2",
|
2019-11-19 20:22:38 +00:00
|
|
|
"sharp": "^0.23.3",
|
2019-11-08 18:55:41 +00:00
|
|
|
"ts-jest": "^24.1.0",
|
2019-11-20 07:29:19 +00:00
|
|
|
"ts-node": "^8.5.2",
|
|
|
|
"typescript": "^3.7.2",
|
|
|
|
"web3": "^1.2.4"
|
2019-11-08 18:55:41 +00:00
|
|
|
},
|
2019-11-20 07:29:19 +00:00
|
|
|
"dependencies": {},
|
2019-11-08 18:55:41 +00:00
|
|
|
"jest": {
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"jest-expect-message"
|
|
|
|
]
|
2019-08-09 22:46:58 +00:00
|
|
|
}
|
|
|
|
}
|