-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.09 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.09 KB
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
98
99
100
{
"name": "verifalia",
"version": "5.0.0",
"description": "Verifalia email verification library for JavaScript: verify email addresses in real-time and check whether they are deliverable, invalid, or otherwise risky.",
"homepage": "https://verifalia.com",
"main": "node/cjs/index.js",
"module": "browser/esm/index.js",
"scripts": {
"build-genversion": "genversion --es6 src/version.ts",
"clean": "rimraf dist node browser",
"build": "npm run clean && npm run build-genversion && npm run lint && rollup -c",
"build:production": "cross-env NODE_ENV=production npm run build",
"lint": "eslint -c .eslintrc.js --ext .ts ./src"
},
"typings": "browser/esm/index.d.ts",
"types": "browser/esm/index.d.ts",
"keywords": [
"email",
"validation",
"verification",
"free",
"verifalia",
"service",
"list",
"cleaning",
"scrubbing",
"e-mail",
"syntax",
"smtp",
"disposable",
"mailbox"
],
"contributors": [
{
"name": "Verifalia",
"email": "support@verifalia.com",
"url": "https://verifalia.com"
},
{
"name": "Efran Cobisi"
}
],
"repository": {
"type": "git",
"url": "https://github.com/verifalia/verifalia-js-sdk.git"
},
"dependencies": {
"abort-controller": "^3.0.0",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
"tslib": "^2.5.0"
},
"bugs": {
"url": "https://github.com/verifalia/verifalia-js-sdk/issues"
},
"license": "MIT",
"engines": {
"node": ">= 6.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/debug": "^4.1.5",
"@types/node": "^13.7.4",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"cross-env": "^7.0.0",
"debug": "^4.1.1",
"dts-bundle-generator": "^3.2.0",
"eslint": "^7.13.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-prefer-arrow": "^1.2.2",
"genversion": "^2.2.0",
"preprocess": "^3.2.0",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-preprocess": "^0.0.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-uglify": "^6.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.9.7"
},
"files": [
"browser/**/*",
"node/**/*",
"README.md",
"LICENSE"
]
}