-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 KB
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
{
"name": "crtsh",
"version": "0.1.4",
"description": "Query crt.sh from nodejs",
"main": "./lib/index.js",
"module": "./lib/index.js",
"scripts": {
"test": "mocha --timeout 10000 --bail --recursive test",
"test-watch": "mocha --watch --recursive test",
"postversion": "git push && git push --tags",
"version": "auto-changelog -p && git add CHANGELOG.md",
"update-npmignore": "cat .gitignore npmignore-list > .npmignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kucingbasah737/node-crtsh.git"
},
"keywords": [
"crt.sh",
"crtsh",
"node.js",
"nodejs"
],
"author": "Kucing Basah 737 <kucingbasah737@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kucingbasah737/node-crtsh/issues"
},
"homepage": "https://github.com/kucingbasah737/node-crtsh#readme",
"devDependencies": {
"auto-changelog": "^2.4.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.2",
"semistandard": "^17.0.0",
"should": "^13.2.3"
},
"dependencies": {
"axios": "^1.6.2",
"https-proxy-agent": "^7.0.2",
"is-valid-hostname": "^1.0.2"
},
"engines": {
"node": ">=16"
},
"auto-changelog": {
"commitUrl": "https://github.com/kucingbasah737/node-crtsh/commit/{id}",
"compareUrl": "https://github.com/kucingbasah737/node-crtsh/compare/{from}...{to}",
"issueUrl": "https://github.com/kucingbasah737/node-crtsh/issues/{id}"
}
}