-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.26 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
47
48
49
50
51
52
53
54
55
{
"name": "ping-bong",
"version": "3.0.9",
"description": "A simple ping tool that follows HTTP redirections",
"main": "es/ping-bong.js",
"bin": "bin/ping-bong.js",
"files": [
"./bin",
"./es",
"README.md"
],
"scripts": {
"lint": "eslint es/ bin/",
"demo": "DEBUG=ping-bong node bin/ping-bong.js http://gizmodo.com",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin master && git push origin --tags"
},
"author": "mawrkus <web@sparring-partner.be>",
"license": "MIT",
"homepage": "https://github.com/mawrkus/ping-bong",
"bugs": {
"url": "https://github.com/mawrkus/ping-bong/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mawrkus/ping-bong.git"
},
"keywords": [
"http",
"https",
"request",
"redirect",
"redirects",
"redirections",
"follow",
"http-redirect",
"seo",
"axios"
],
"engines": {
"node": ">= 10"
},
"dependencies": {
"axios": "^0.21.1",
"debug": "^4.1.1",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.18.2"
}
}