-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "subscan",
"version": "1.0.2",
"description": "Simple subdomain scanner",
"author": "Wany <[email protected]> (https://wany.io)",
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./src/index.mjs"
},
"keywords": [
"subdomain",
"scan",
"scanner",
"domain"
],
"homepage": "https://github.com/wnynya/Subscan#readme",
"repository": {
"type": "git",
"url": "https://github.com/wnynya/Subscan.git"
},
"scripts": {
"scan": "node lib/index.js",
"babel": "npx babel src --out-file-extension .js --out-dir lib"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.14.9",
"babel-plugin-replace-import-extension": "^1.1.3",
"babel-plugin-transform-import-meta": "^2.2.0",
"babel-preset-minify": "^0.5.2"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}