gas-price-oracle/package.json

66 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2020-05-27 18:52:57 +03:00
{
"name": "gas-price-oracle",
"version": "0.5.0",
2020-05-27 18:52:57 +03:00
"description": "Gas Price Oracle library for Ethereum dApps.",
2020-06-04 02:08:09 +03:00
"homepage": "https://github.com/peppersec/gas-price-oracle",
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
2020-06-04 02:08:09 +03:00
"repository": {
"type": "git",
"url": "https://github.com/peppersec/gas-price-oracle.git"
},
2020-05-27 18:52:57 +03:00
"scripts": {
"test": "ts-mocha --timeout 30000 --paths 'src/tests/*.test.ts'",
"build": "tsc && tsc-alias",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
2020-10-19 16:14:07 +03:00
"eslint": "eslint 'src/*.ts'",
2020-10-19 15:02:47 +03:00
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check",
"prepare": "yarn build && yarn build:esm",
"prepublishOnly": "yarn test && yarn lint"
2020-05-27 18:52:57 +03:00
},
"author": "Alexey Pertsev <alexey@peppersec.com> (https://peppersec.com)",
2020-06-04 02:08:09 +03:00
"keywords": [
"Gas",
"Gas price",
"Ethereum",
"Oracle",
"EIP-1559",
"London Fork"
2020-06-04 02:08:09 +03:00
],
2020-05-27 18:52:57 +03:00
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
2020-10-19 15:02:47 +03:00
"@types/chai-as-promised": "^7.1.3",
2020-05-27 18:52:57 +03:00
"@types/mocha": "^7.0.2",
2020-06-01 17:29:58 +03:00
"@types/mockery": "^1.4.29",
2020-06-04 18:45:33 +03:00
"@types/node": "^14.0.5",
2020-10-19 15:02:47 +03:00
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
2020-05-27 18:52:57 +03:00
"chai": "^4.2.0",
2020-06-01 17:29:58 +03:00
"chai-as-promised": "^7.1.1",
2020-10-19 15:02:47 +03:00
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
2020-10-19 15:02:47 +03:00
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^6.0.0",
2020-05-27 18:52:57 +03:00
"mocha": "^7.2.0",
2020-06-01 17:29:58 +03:00
"mockery": "^2.1.0",
2020-10-16 14:10:25 +03:00
"prettier": "^2.1.2",
"ts-mocha": "^10.0.0",
2020-05-27 18:52:57 +03:00
"ts-node": "^8.10.1",
"tsc-alias": "^1.6.11",
"typescript": "^4.7.4"
2020-05-27 18:52:57 +03:00
},
2020-06-04 18:45:33 +03:00
"dependencies": {
"axios": "^0.21.2",
2020-06-04 18:45:33 +03:00
"bignumber.js": "^9.0.0"
},
2020-05-27 18:52:57 +03:00
"files": [
"lib/**/*"
]
2020-10-16 14:10:25 +03:00
}