forked from bennymeg/AcademicEmailVerifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 797 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
{
"name": "academic-email-verifier",
"version": "1.0.3",
"description": "Identifies email addresses or domains names that belong to colleges or universities",
"main": "index.js",
"homepage": "https://github.com/bennymeg/AcademicEmailVerifier",
"scripts": {
"start": "node index.js",
"test": "npm run lint && mocha --recursive || true",
"lint": "jshint --exclude-path=.gitignore ."
},
"keywords": [
"Academic",
"University",
"College",
"Email",
"TLD",
"Verifier"
],
"author": "Benny Megidish",
"repository": {
"type": "git",
"url": "https://github.com/bennymeg/AcademicEmailVerifier.git"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.9.6",
"mocha": "^5.2.0"
},
"dependencies": {}
}