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-07-11 08:10:28 +00:00
|
|
|
"test": "jest",
|
2020-09-23 13:47:24 +00:00
|
|
|
"check": "ts-node ./script/entrypoint/check",
|
|
|
|
"check-sanity": "ts-node ./script/entrypoint/check-sanity",
|
|
|
|
"fix": "ts-node ./script/entrypoint/fix",
|
|
|
|
"fix-sanity": "ts-node ./script/entrypoint/fix-sanity",
|
2021-02-01 15:45:55 +00:00
|
|
|
"updateAuto": "ts-node ./script/entrypoint/updateAuto",
|
|
|
|
"update": "ts-node ./script/entrypoint/updateManual",
|
2021-02-22 15:25:32 +00:00
|
|
|
"history": "ts-node ./script/entrypoint/history",
|
2020-10-14 01:20:42 +00:00
|
|
|
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
|
|
|
|
"lint:fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix"
|
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": {
|
2021-06-10 10:08:39 +00:00
|
|
|
"@trustwallet/wallet-core": "^2.6.10",
|
2020-07-20 20:10:01 +00:00
|
|
|
"@types/jest": "^25.2.3",
|
2021-06-10 10:08:39 +00:00
|
|
|
"@types/jest-expect-message": "^1.0.3",
|
|
|
|
"@types/node": "^13.13.52",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.26.1",
|
|
|
|
"@typescript-eslint/parser": "^4.26.1",
|
2021-01-06 08:55:04 +00:00
|
|
|
"axios": "^0.21.1",
|
2021-03-05 05:52:41 +00:00
|
|
|
"bignumber.js": "^9.0.0",
|
2021-06-10 10:08:39 +00:00
|
|
|
"bip44-constants": "^8.0.103",
|
2020-01-13 07:44:30 +00:00
|
|
|
"bluebird": "^3.7.2",
|
2021-06-10 10:08:39 +00:00
|
|
|
"chalk": "^4.1.1",
|
|
|
|
"eslint": "^7.28.0",
|
2020-09-10 09:57:46 +00:00
|
|
|
"ethereum-checksum-address": "0.0.6",
|
2019-11-20 07:29:19 +00:00
|
|
|
"eztz-lib": "^0.1.2",
|
|
|
|
"image-size": "^0.8.3",
|
2020-04-18 03:33:50 +00:00
|
|
|
"is-image": "^3.0.0",
|
2021-01-06 08:55:04 +00:00
|
|
|
"jest": "^26.6.3",
|
2019-11-08 18:55:41 +00:00
|
|
|
"jest-expect-message": "^1.0.2",
|
2021-06-10 10:03:22 +00:00
|
|
|
"meow": "^10.0.1",
|
2020-09-10 09:57:46 +00:00
|
|
|
"nested-property": "^2.0.2",
|
2020-07-20 20:10:01 +00:00
|
|
|
"sharp": "^0.25.4",
|
2020-04-11 03:07:01 +00:00
|
|
|
"tinify": "^1.6.0-beta.2",
|
2021-06-10 10:08:39 +00:00
|
|
|
"ts-jest": "^26.5.6",
|
2021-03-05 05:52:41 +00:00
|
|
|
"ts-node": "^9.1.1",
|
2021-06-10 10:08:39 +00:00
|
|
|
"typescript": "^4.3.2"
|
2020-07-20 20:10:01 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-06-10 10:08:39 +00:00
|
|
|
"codecov": "^3.8.2",
|
2021-01-25 14:23:03 +00:00
|
|
|
"jsondiffpatch": "^0.4.1"
|
2019-11-08 18:55:41 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"jest-expect-message"
|
|
|
|
]
|
2019-08-09 22:46:58 +00:00
|
|
|
}
|
|
|
|
}
|