-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"private": true,
"name": "email-ok",
"version": "0.1.0",
"description": "API to check if an email is from a disposable email service",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
"test": "NODE_ENV='test' tape test/test.js",
"postinstall": "node download-list.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/V3RITAS-UTD/email-ok.git"
},
"keywords": [
"disposable email",
"disposable validate",
"temporary email"
],
"author": "V3RITAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/V3RITAS-UTD/email-ok/issues"
},
"homepage": "https://github.com/V3RITAS-UTD/email-ok#readme",
"dependencies": {
"@koa/cors": "2",
"dotenv": "^7.0.0",
"koa": "^2.7.0",
"koa-logger": "^3.2.0",
"koa-route": "^3.2.0"
},
"devDependencies": {
"prettier-standard": "^9.1.1",
"request": "^2.88.0",
"supertest": "^4.0.2",
"tape": "^4.10.1"
}
}