forked from BeeWell/cross-email-validator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.99 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
{
"name": "cross-email-validator",
"version": "1.1.1",
"description": "Goes beyond validating the characters that make up the email, and additionally performs DNS and mailbox checks to ensure that the email address is valid. Does all the network calls using 'cross-fetch', so it works in the browser, on React Native, on Node, and anywhere else you want to execute it.",
"main": "index.js",
"browser": "./dist/browser/index.js",
"repository": "git@github.com:BeeWell/react-native-email-validator.git",
"author": "Robert Fischer <robert+github@getbeewell.com>",
"license": "MIT",
"private": false,
"sideEffects": false,
"dependencies": {
"bluebird": "^3.5.2",
"cross-fetch": "^2.2.2",
"detect-is-node": "^1.0.3",
"lodash": "^4.17.10",
"nodemailer": "^6.0.0",
"tlds": "stephenmathieson/node-tlds#master",
"urijs": "^1.19.6",
"validator": "^10.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-minify": "^0.4.3",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"eslint": "^5.16.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^3.8.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"parcel": "^1.9.7",
"prettier": "^1.14.3"
},
"scripts": {
"eslint": "eslint --cache --fix ./index.js 2>&1 1>/dev/null || eslint --cache --color --report-unused-disable-directives ./index.js",
"babel": "babel ./index.js",
"parcel": "parcel build --out-dir ./dist/browser/ --global CrossEmail ./index.js && git add ./dist",
"precommit": "yarn run eslint && yarn run test && yarn run parcel",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- --harmony --use_strict --throw-deprecation --check-leaks --async-only ./test.js"
}
}