-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1013 Bytes
/
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
{
"name": "neverbounce",
"version": "4.4.1",
"description": "An API wrapper for the NeverBounce API",
"engines": {
"node": ">=8.0"
},
"main": "src/NeverBounce.js",
"repository": {
"type": "git",
"url": "https://github.com/NeverBounce/NeverBounceApi-NodeJS"
},
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint ./src/*",
"lint:fix": "./node_modules/.bin/eslint ./src/* --fix"
},
"keywords": [
"email",
"email verification",
"email validation",
"email cleaning",
"verification",
"validation",
"cleaning"
],
"author": "NeverBounce <[email protected]> (https://neverbounce.com)",
"contributors": [
"Mike Mollick <[email protected]>"
],
"homepage": "https://neverbounce.com",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.10.0",
"mocha": "^5.2.0",
"nock": "^10.0.4"
},
"dependencies": {
"lodash.merge": "^4.6.1"
}
}