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

62 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2020-04-17 19:40:42 +00:00
{
2023-10-19 10:57:40 +00:00
"name": "@fascinated/node-fetch-cache",
2023-05-20 16:56:31 +00:00
"version": "3.1.3",
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",
2023-10-19 11:00:47 +00:00
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
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 lintfix && npm run buildcjs && mocha --timeout 10000 --exit",
2021-06-12 23:26:05 +00:00
"coverage": "nyc --reporter=lcov --reporter=text npm test",
2023-10-19 10:55:49 +00:00
"lint": "eslint .",
"lintfix": "eslint . --fix",
2021-07-09 18:36:43 +00:00
"prepublishOnly": "npm test"
2020-04-17 19:40:42 +00:00
},
"repository": {
"type": "git",
2023-10-19 10:52:43 +00:00
"url": "git+https://git.fascinated.cc/Fascinated/node-fetch-cache.git"
2020-04-17 19:40:42 +00:00
},
"keywords": [
"node",
"fetch",
"node-fetch",
"cache",
"cached"
],
"author": "mistval",
"license": "MIT",
"bugs": {
2023-10-19 10:52:43 +00:00
"url": "https://git.fascinated.cc/Fascinated/node-fetch-cache/issues"
2020-04-17 19:40:42 +00:00
},
2023-10-19 10:52:43 +00:00
"homepage": "https://git.fascinated.cc/Fascinated/node-fetch-cache#readme",
2020-04-17 19:40:42 +00:00
"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": "^8.0.3",
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": "^1.0.0",
2023-05-20 16:56:31 +00:00
"node-fetch": "2.6.11"
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
}
}