{ "name": "gas-price-oracle", "version": "1.0.0", "description": "Gas Price Oracle library for Ethereum dApps.", "main": "lib/index.js", "types": "lib/index.d.ts", "prepare": "npm run build", "prepublishOnly": "npm run lint", "scripts": { "test": "mocha -r ts-node/register tests/*.test.ts", "build": "tsc", "lint": "tslint -p tsconfig.json" }, "author": "Alexey Pertsev (https://peppersec.com)", "license": "MIT", "devDependencies": { "@types/chai": "^4.2.11", "@types/mocha": "^7.0.2", "chai": "^4.2.0", "mocha": "^7.2.0", "tslint": "^6.1.2", "tslint-config-standard": "^9.0.0" }, "dependencies": { "@types/node": "^14.0.5", "@types/node-fetch": "^2.5.7", "node-fetch": "^2.6.0", "ts-node": "^8.10.1", "typescript": "^3.9.3" }, "files": [ "lib/**/*" ] }