-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "emailvalid",
"version": "1.0.4",
"description": "Email validation with more than 10K disposable/temporary email domains",
"repository": {
"type": "git",
"url": "https://github.com/romainsimon/emailvalid.git"
},
"main": "index.js",
"scripts": {
"test": "standard && nyc --reporter=html --reporter=text mocha \"./{,!(node_modules)/**/}*.spec.js\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"lint:fix": "standard --fix",
"add-domain": "node ./scripts/add",
"clean": "node ./scripts/clean"
},
"author": "Romain Simon <[email protected]>",
"license": "MIT",
"keywords": [
"email",
"validation",
"disposable",
"throwaway",
"freemail",
"temporary"
],
"standard": {
"env": {
"mocha": true
}
},
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^12.0.2",
"standard": "^12.0.1"
},
"engines": {
"node": ">=10",
"npm": ">=6"
}
}