-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
44
45
46
{
"name": "node-fetch-har",
"version": "1.0.1",
"license": "MIT",
"homepage": "https://github.com/exogen/node-fetch-har",
"repository": {
"type": "git",
"url": "https://github.com/exogen/node-fetch-har"
},
"engines": {
"node": ">=8.10.0"
},
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"coveralls": "coveralls < ./coverage/lcov.info",
"format": "prettier --write \"**/*.{js,md}\"",
"lint": "eslint index.js test",
"start": "cd demo && yarn start",
"test": "yarn run lint && yarn test:coverage",
"test:ci": "yarn test:coverage --verbose && yarn coveralls",
"test:coverage": "jest --coverage",
"test:only": "jest"
},
"peerDependencies": {
"node-fetch": "^1.7.0 || ^2.0.0"
},
"dependencies": {
"cookie": "^0.4.0",
"nanoid": "^2.0.3",
"set-cookie-parser": "^2.3.5"
},
"devDependencies": {
"agentkeepalive": "^4.0.2",
"coveralls": "^3.0.4",
"cross-fetch": "^3.0.4",
"eslint": "^5.16.0",
"isomorphic-fetch": "^2.2.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^24.8.0",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2"
}
}