-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "node-fetch-cookies",
"version": "2.1.1",
"description": "node-fetch wrapper that adds support for cookie-jars",
"main": "src/index.mjs",
"engines": {
"node": ">=14.13.0"
},
"files": [
"src/"
],
"scripts": {
"test": "node --experimental-modules test/index.mjs",
"lint": "npx eslint --ext mjs src/ test/ && npx prettier --check package.json package-lock.json .github .prettierrc.json .eslintrc.json README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkhsjdhjs/node-fetch-cookies.git"
},
"keywords": [
"cookie",
"cookie-jar",
"node-fetch",
"fetch"
],
"author": "jkhsjdhjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkhsjdhjs/node-fetch-cookies/issues"
},
"homepage": "https://github.com/jkhsjdhjs/node-fetch-cookies#readme",
"dependencies": {
"node-fetch": "^2.7.0"
},
"devDependencies": {
"cookie-parser": "^1.4.5",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"prettier": "^2.1.2"
}
}