-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 827 Bytes
/
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
{
"name": "follow-url-redirects",
"version": "1.1.0",
"description": "Follows all redirects",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrdaano/follow-url-redirects.git"
},
"keywords": [
"http",
"https",
"redirect",
"redirects",
"url",
"site",
"follow",
"follower",
"website"
],
"author": "Daan Kloetstra",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrdaano/follow-url-redirects/issues"
},
"homepage": "https://github.com/mrdaano/follow-url-redirects#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1"
},
"dependencies": {
"cookie": "^0.4.1",
"query-string": "^6.13.1"
}
}