This repository has been archived by the owner on Jan 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
96 lines (96 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "shodan-client",
"version": "3.2.0",
"description": "👀 A Node.js/JavaScript library for accessing the Shodan API",
"keywords": [
"node",
"Shodan",
"API",
"client",
"vulnerability",
"0day",
"client"
],
"bugs": {
"url": "https://github.com/jesusprubio/shodan-client/issues"
},
"license": "MIT",
"author": {
"name": "Jesus Rubio",
"url": "http://jesusprubio.dev"
},
"files": [
"index.js",
"lib"
],
"contributors": [
"https://github.com/jesusprubio/shodan-client/graphs/contributors"
],
"repository": {
"type": "git",
"url": "https://github.com/jesusprubio/shodan-client.git"
},
"dependencies": {
"debug": "^4.1.1",
"got": "^10.6.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"ava": "^3.5.0",
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"lint-staged": "^10.0.8",
"nyc": "^15.0.0",
"prettier": "^1.19.1"
},
"scripts": {
"format": "prettier --write '**/*.js'",
"lint": "eslint .",
"precommit": "lint-staged",
"deps": "depcheck --ignores=eslint-config-airbnb-base,eslint-config-prettier,eslint-plugin-import,eslint-plugin-json,lint-staged,np,prettier",
"pretest": "npm run deps && npm run lint",
"test-nokey": "ava -v test/nokey/**/*.js && ava test/nokey/utils.js",
"test": "nyc ava"
},
"ava": {
"files": [
"test/functional/**/*"
],
"concurrency": 1,
"verbose": true,
"timeout": "20s"
},
"engines": {
"node": ">=10"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"strict": [
"off"
]
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}