forked from leereilly/swot
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "swot-node",
"version": "2.0.1489",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/marvinschopf/swot-node.git",
"homepage": "https://swot.js.org",
"description": "🏫 Identify email addresses or domains names that belong to colleges or universities. Help automate the process of approving or rejecting academic discounts.",
"funding": "https://sponsor.marvinschopf.com/swot-node",
"author": {
"name": "Marvin Schopf",
"email": "marvin@schopf.biz",
"url": "https://www.marvinschopf.com"
},
"keywords": [
"swot",
"email verification",
"verify email",
"academic emails",
"school emails",
"educational emails",
"verify school emails"
],
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "14.14.33",
"@types/tldjs": "2.3.0",
"chai": "^4.3.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"dependencies": {
"academic-tld": "^1.0.4",
"tldjs": "2.3.1"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"dist/*",
"data/lib/domains/*",
"data/LICENSE.txt"
]
}