forked from b4dnewz/node-emailhunter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.03 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
97
{
"name": "hunter.io",
"version": "0.2.7",
"description": "A simple javascript wrapper for Hunter.io API",
"homepage": "https://b4dnewz.github.io/node-emailhunter/",
"author": {
"name": "b4dnewz",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"files": [
"lib",
"dist",
"bin"
],
"main": "dist/hunter.io.node.js",
"bin": {
"email-hunter": "./bin/index.js"
},
"keywords": [
"email-hunter",
"hunterio"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"nock": "^9.2.5",
"nsp": "^3.2.1",
"prettier": "^1.12.1",
"regenerator-runtime": "^0.11.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint ./lib",
"test": "jest --coverage",
"prebuild": "esdoc",
"build": "webpack",
"updatedocs": "git subtree push --prefix docs origin gh-pages"
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"camelcase": 1,
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"esdoc": {
"source": "./lib",
"destination": "./docs",
"plugins": [
{
"name": "esdoc-standard-plugin"
}
]
},
"repository": "b4dnewz/node-emailhunter",
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"commander": "^2.15.1",
"inquirer": "^5.1.0",
"querystring": "^0.2.0"
}
}