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",
|
|
|
|
"update": "ts-node ./script/entrypoint/update",
|
2020-09-18 14:39:31 +00:00
|
|
|
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
|
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-09-09 19:15:44 +00:00
|
|
|
"@trustwallet/wallet-core": "^2.2.10",
|
2020-07-20 20:10:01 +00:00
|
|
|
"@types/jest": "^25.2.3",
|
|
|
|
"@types/jest-expect-message": "^1.0.2",
|
2020-09-10 09:57:46 +00:00
|
|
|
"@types/node": "^13.13.17",
|
2020-09-18 14:39:31 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.1.1",
|
|
|
|
"@typescript-eslint/parser": "^4.1.1",
|
2020-02-20 06:02:05 +00:00
|
|
|
"axios": "^0.19.2",
|
2020-09-10 09:57:46 +00:00
|
|
|
"bip44-constants": "^8.0.49",
|
2020-01-13 07:44:30 +00:00
|
|
|
"bluebird": "^3.7.2",
|
2020-07-20 20:10:01 +00:00
|
|
|
"chalk": "^4.1.0",
|
2020-09-10 09:57:46 +00:00
|
|
|
"danger": "^10.4.0",
|
2020-09-18 14:39:31 +00:00
|
|
|
"eslint": "^7.9.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",
|
2020-07-20 20:10:01 +00:00
|
|
|
"jest": "^25.5.4",
|
2019-11-08 18:55:41 +00:00
|
|
|
"jest-expect-message": "^1.0.2",
|
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",
|
2020-07-20 20:10:01 +00:00
|
|
|
"ts-jest": "^25.5.1",
|
|
|
|
"ts-node": "^8.10.2",
|
|
|
|
"typescript": "^3.9.7",
|
|
|
|
"web3": "^1.2.11"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-09-10 09:57:46 +00:00
|
|
|
"codecov": "^3.7.2"
|
2019-11-08 18:55:41 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"jest-expect-message"
|
|
|
|
]
|
2019-08-09 22:46:58 +00:00
|
|
|
}
|
|
|
|
}
|