50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "gas-price-oracle",
|
|
"version": "0.1.2",
|
|
"description": "Gas Price Oracle library for Ethereum dApps.",
|
|
"main": "lib/index.js",
|
|
"homepage": "https://github.com/peppersec/gas-price-oracle",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/peppersec/gas-price-oracle.git"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm test && npm run lint",
|
|
"scripts": {
|
|
"test": "mocha --timeout 30000 -r ts-node/register tests/*.test.ts",
|
|
"build": "tsc",
|
|
"lint": "tslint -p tsconfig.json"
|
|
},
|
|
"author": "Alexey Pertsev <alexey@peppersec.com> (https://peppersec.com)",
|
|
"keywords": [
|
|
"Gas",
|
|
"Gas price",
|
|
"Ethereum",
|
|
"Oracle"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.11",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/mockery": "^1.4.29",
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"mocha": "^7.2.0",
|
|
"mockery": "^2.1.0",
|
|
"tslint": "^6.1.2",
|
|
"tslint-config-standard": "^9.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "^14.0.5",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"bignumber.js": "^9.0.0",
|
|
"node-fetch": "^2.6.0",
|
|
"ts-node": "^8.10.1",
|
|
"typescript": "^3.9.3"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
]
|
|
}
|