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

58 lines
1.4 KiB
JSON
Raw Normal View History

2020-04-17 19:40:42 +00:00
{
"name": "node-fetch-cache",
2022-02-21 15:37:23 +00:00
"version": "3.0.5",
2021-07-11 13:08:46 +00:00
"description": "node-fetch with caching.",
2021-07-09 18:12:55 +00:00
"main": "src/index.js",
2021-07-05 18:17:21 +00:00
"type": "module",
2021-07-09 18:36:43 +00:00
"exports": {
"import": "./src/index.js",
"require": "./commonjs/wrapper.cjs"
},
2020-04-17 19:40:42 +00:00
"scripts": {
2021-07-09 18:36:43 +00:00
"buildcjs": "rollup src/index.js --file commonjs/index.cjs --format cjs",
"test": "npm run buildcjs && mocha --timeout 10000 --exit",
2021-06-12 23:26:05 +00:00
"coverage": "nyc --reporter=lcov --reporter=text npm test",
2020-04-17 20:31:22 +00:00
"lint": "./node_modules/.bin/eslint .",
2021-07-09 18:36:43 +00:00
"lintfix": "./node_modules/.bin/eslint . --fix",
"prepublishOnly": "npm test"
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": {
2022-02-19 13:54:14 +00:00
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
2021-06-12 23:26:05 +00:00
"form-data": "^3.0.0",
"husky": "^4.3.0",
2022-02-19 13:48:33 +00:00
"mocha": "^9.2.1",
2021-06-12 23:26:05 +00:00
"nyc": "^15.1.0",
2021-07-09 18:36:43 +00:00
"rimraf": "^3.0.2",
"rollup": "^2.53.0"
2020-04-17 20:31:22 +00:00
},
"dependencies": {
2021-07-06 01:40:53 +00:00
"cacache": "^15.2.0",
"locko": "0.0.3",
"node-fetch": "2.6.7"
2021-06-12 23:26:05 +00:00
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
2020-04-17 19:40:42 +00:00
}
}