-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "censys.io",
"version": "0.1.0",
"description": "Javascript wrapper for Censys.io API",
"homepage": "https://github.com/b4dnewz/node-censys",
"author": {
"name": "Filippo Conti",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"license": "MIT",
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"censys": "./lib/run.js"
},
"keywords": [
"censys",
"censys-api",
"node-client",
"cli-tool"
],
"dependencies": {
"commander": "^2.19.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/nock": "^10.0.3",
"@types/node": "^12.6.8",
"@types/node-fetch": "^2.3.7",
"coveralls": "^3.0.5",
"jest": "^24.1.0",
"nock": "^10.0.6",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"scripts": {
"pretest": "npm run lint",
"prepublish": "npm run build",
"prebuild": "npm run test",
"test": "jest --coverage",
"lint": "tslint -p . --fix",
"build": "tsc"
},
"repository": "b4dnewz/node-censys"
}