-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "rapiddns-io-scrapper",
"version": "1.1.2",
"description": "Node.js module to scrape and extract result from rapiddns.io",
"main": "./lib/index.js",
"module": "./lib/index.js",
"bin": {
"rapiddns": "./bin/rapiddns.js"
},
"scripts": {
"test": "mocha --bail --recursive test",
"test-watch": "mocha --watch --bail --recursive test",
"postversion": "git push && git push --tags",
"version": "auto-changelog -p && git add CHANGELOG.md; cp -fv .gitignore .npmignore; echo >> .npmignore; cat npmignore-list >> .npmignore; git add .npmignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kucingbasah737/node-rapiddns-io-scrapper.git"
},
"keywords": [
"rapiddns.io",
"rapiddns",
"scraper",
"scraping",
"reverse-ip",
"same-ip",
"reverseip",
"subdomain",
"subdomains"
],
"author": "Kucing Basah 737 <kucingbasah737@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kucingbasah737/node-rapiddns-io-scrapper/issues"
},
"homepage": "https://github.com/kucingbasah737/node-rapiddns-io-scrapper#readme",
"devDependencies": {
"auto-changelog": "^2.4.0",
"mocha": "^10.2.0",
"semistandard": "^17.0.0",
"should": "^13.2.3"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"axios": "^1.6.5"
}
}