2019-08-09 22:46:58 +00:00
|
|
|
{
|
|
|
|
"name": "assets",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Assets consumed by Trust Wallet",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2020-01-17 21:44:30 +00:00
|
|
|
"pre-test": "",
|
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-12-14 21:48:06 +00:00
|
|
|
"update-bep2": "npm run cleanup && node ./script/updateBEP2",
|
2020-01-20 05:34:25 +00:00
|
|
|
"checksum-erc20": "npm run cleanup && ts-node ./script/erc20_to_checksum",
|
2020-02-21 22:01:03 +00:00
|
|
|
"gen:list": "npm run cleanup && ts-node ./script/gen_list",
|
|
|
|
"gen:info": "npm run cleanup && ts-node ./script/gen_info",
|
2019-11-20 07:29:19 +00:00
|
|
|
"resize": "npm run cleanup && ts-node ./script/resize_images",
|
2020-02-04 08:54:44 +00:00
|
|
|
"map:cmc": "ts-node ./pricing/coinmarketcap/script",
|
2020-02-21 22:01:03 +00:00
|
|
|
"magic": "npm run update-bep2 && npm run checksum-erc20 && npm run resize && npm run gen:list && npm t"
|
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": {
|
2020-01-13 07:44:30 +00:00
|
|
|
"@trustwallet/types": "^0.1.37",
|
2020-02-20 06:02:05 +00:00
|
|
|
"@types/jest": "^25.1.3",
|
2019-11-08 18:55:41 +00:00
|
|
|
"@types/jest-expect-message": "^1.0.1",
|
2020-02-20 06:02:05 +00:00
|
|
|
"axios": "^0.19.2",
|
2019-11-20 07:29:19 +00:00
|
|
|
"bip44-constants": "^8.0.5",
|
2020-01-13 07:44:30 +00:00
|
|
|
"bluebird": "^3.7.2",
|
2019-11-20 07:29:19 +00:00
|
|
|
"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",
|
2020-02-20 06:02:05 +00:00
|
|
|
"jest": "^25.1.0",
|
2019-11-08 18:55:41 +00:00
|
|
|
"jest-expect-message": "^1.0.2",
|
2020-02-20 06:02:05 +00:00
|
|
|
"nested-property": "^2.0.0",
|
|
|
|
"sharp": "^0.24.1",
|
|
|
|
"ts-jest": "^25.2.1",
|
2020-01-16 18:50:25 +00:00
|
|
|
"ts-node": "^8.6.2",
|
2020-01-17 21:44:30 +00:00
|
|
|
"typescript": "^3.7.5",
|
2020-02-20 06:02:05 +00:00
|
|
|
"web3": "^1.2.6"
|
2019-11-08 18:55:41 +00:00
|
|
|
},
|
2020-02-19 02:00:11 +00:00
|
|
|
"dependencies": {
|
2020-02-20 06:02:05 +00:00
|
|
|
"@types/node": "^13.7.4"
|
2020-02-19 02:00:11 +00:00
|
|
|
},
|
2019-11-08 18:55:41 +00:00
|
|
|
"jest": {
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"jest-expect-message"
|
|
|
|
]
|
2019-08-09 22:46:58 +00:00
|
|
|
}
|
|
|
|
}
|