-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 974 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
{
"name": "@anonymitybot/is-educational-email-domain",
"version": "1.0.6",
"description": "Check if an email domain belongs to an educational instutition",
"main": "dist/main.js",
"author": "Sagi Kedmi <[email protected]>",
"license": "MIT",
"private": false,
"homepage": "https://anonymitybot.com",
"repository": "https://github.com/AnonymityBot/is-educational-email-domain.git",
"keywords": ["educational", "email", "domain", "check", "anonymitybot"],
"scripts": {
"build": "yarn webpack",
"prepublish": "yarn build && yarn test",
"test": "yarn jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prettier:ci": "prettier --list-different ./src/*.js",
"lint": "yarn eslint ./src"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
}
}