This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
node-fetch-cache/package.json

47 lines
1.0 KiB
JSON
Raw Normal View History

2020-04-17 19:40:42 +00:00
{
"name": "node-fetch-cache",
2020-11-28 02:44:36 +00:00
"version": "1.0.6",
2020-04-17 19:40:42 +00:00
"description": "node-fetch with a persistent cache.",
"main": "index.js",
"scripts": {
2021-06-10 14:39:01 +00:00
"test": "mocha -- --timeout 10000",
2020-04-17 20:31:22 +00:00
"lint": "./node_modules/.bin/eslint .",
"lintfix": "./node_modules/.bin/eslint . --fix"
2020-04-17 19:40:42 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/mistval/node-fetch-cache.git"
},
"keywords": [
"node",
"fetch",
"node-fetch",
"cache",
"cached"
],
"author": "mistval",
"license": "MIT",
"bugs": {
"url": "https://github.com/mistval/node-fetch-cache/issues"
},
"homepage": "https://github.com/mistval/node-fetch-cache#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
2020-11-28 02:00:29 +00:00
"eslint-plugin-import": "^2.20.2",
2020-11-28 16:43:50 +00:00
"form-data": "^3.0.0",
"husky": "^4.3.0",
2020-11-28 03:26:31 +00:00
"mocha": "^8.2.1",
"rimraf": "^3.0.2"
2020-04-17 20:31:22 +00:00
},
"dependencies": {
2021-06-11 14:51:00 +00:00
"fpersist": "^1.0.5",
2020-04-17 20:31:22 +00:00
"node-fetch": "*"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
2020-04-17 19:40:42 +00:00
}
}