-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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
{
"name": "zb-email-verifier",
"description": "Promise-based library for verify an email address existence via SMTP",
"version": "0.6.5",
"author": {
"name": "ZIGBANG",
"url": "http://www.zigbang.com/"
},
"keywords": [
"email",
"email validate",
"email validation",
"email smtp",
"smtp",
"zigbang"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/zigbang/zigbang-email-verifier.git"
},
"homepage": "https://github.com/zigbang/zigbang-email-verifier",
"dependencies": {
"bluebird": "^3.5.5",
"chalk": "^3.0.0",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"randomstring": "^1.1.5",
"wait-queue": "^1.1.2"
},
"devDependencies": {
"@testdeck/jest": "^0.1.0",
"@types/bluebird": "^3.5.29",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^14.0.1",
"@types/randomstring": "^1.1.6",
"gulp": "4.0.2",
"gulp-cli": "2.2.0",
"jest": ">=25 <26",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2",
"write-json-file": "^2.3.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"publish-package": "npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}