forked from whitef0x0/node-email-verification
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "email-verification",
"version": "0.4.6",
"description": "Verify email sign-up using MongoDB.",
"main": "index.js",
"scripts": {
"format:examples": "js-beautify -r examples/**/*.js",
"format:main": "js-beautify -r index.js",
"format:test": "js-beautify -s 2 -r test/*.js",
"format": "npm run format:main && npm run format:examples && npm run format:test",
"lint:examples": "jshint --reporter=node_modules/jshint-stylish examples/**/*.js",
"lint:main": "jshint --reporter=node_modules/jshint-stylish index.js",
"lint:test": "jshint --reporter=node_modules/jshint-stylish test/*.js",
"lint": "npm run lint:main && npm run lint:examples && npm run lint:test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/whitef0x0/node-email-verification"
},
"keywords": [
"mongodb",
"auth",
"authentication",
"email"
],
"author": "Dakota St. Laurent <hello@saintdako.com> (http://saintdako.com/)",
"contributors": [
{
"name": "David Baldwynn",
"email": "polydaic@gmail.com",
"url": "https://github.com/whitef0x0"
},
{
"name": "Frank Cash",
"email": "cashc@acm.org",
"url": "https://github.com/frankcash"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/whitef0x0/node-email-verification/issues"
},
"homepage": "http://email-verification.xyz/",
"dependencies": {
"mongoose": "~3.8.0",
"nodemailer": "^4.0.1",
"rand-token": "^0.2.1"
},
"devDependencies": {
"async": "^1.4.2",
"bcryptjs": "^2.3.0",
"body-parser": "^1.9.3",
"chai": "*",
"express": "^4.10.4",
"js-beautify": "^1.5.10",
"jshint": "*",
"jshint-stylish": "*",
"mocha": "*",
"nodemailer-stub-transport": "^1.0.0",
"bluebird": "*"
}
}