gas-price-oracle/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2020-05-27 18:52:57 +03:00
{
"name": "gas-price-oracle",
2020-06-02 16:29:12 +03:00
"version": "0.1.1",
2020-05-27 18:52:57 +03:00
"description": "Gas Price Oracle library for Ethereum dApps.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"prepare": "npm run build",
2020-06-02 16:29:12 +03:00
"prepublishOnly": "npm test && npm run lint",
2020-05-27 18:52:57 +03:00
"scripts": {
2020-06-01 17:29:58 +03:00
"test": "mocha --timeout 30000 -r ts-node/register tests/*.test.ts",
2020-05-27 18:52:57 +03:00
"build": "tsc",
"lint": "tslint -p tsconfig.json"
},
"author": "Alexey Pertsev <alexey@peppersec.com> (https://peppersec.com)",
2020-06-02 16:29:12 +03:00
"keywords": ["Gas", "Gas price", "Ethereum", "Oracle"],
2020-05-27 18:52:57 +03:00
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
2020-06-01 17:29:58 +03:00
"@types/mockery": "^1.4.29",
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-05-27 18:52:57 +03:00
"mocha": "^7.2.0",
2020-06-01 17:29:58 +03:00
"mockery": "^2.1.0",
2020-05-27 18:52:57 +03:00
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0"
},
"dependencies": {
"@types/node": "^14.0.5",
"@types/node-fetch": "^2.5.7",
2020-06-01 17:29:58 +03:00
"bignumber.js": "^9.0.0",
2020-05-27 18:52:57 +03:00
"node-fetch": "^2.6.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"files": [
"lib/**/*"
]
}