-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 815 Bytes
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
{
"name": "academic-email-verifier",
"version": "3.1.0",
"description": "Identifies email addresses or domains names that belong to colleges or universities",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://bennymeg.github.io/AcademicEmailVerifier/",
"scripts": {
"start": "node index.js",
"test": "mocha --recursive || true",
"lint": "jshint --exclude-path=.gitignore ."
},
"keywords": [
"Academic",
"Email",
"Verifier",
"University",
"College",
"TLD"
],
"author": "Benny Megidish",
"repository": {
"type": "git",
"url": "https://github.com/bennymeg/AcademicEmailVerifier.git"
},
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.3.6",
"jshint": "^2.13.4",
"mocha": "^11.4.0"
},
"dependencies": {}
}