-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
75 lines (75 loc) · 1.59 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "activator",
"description": "simple user activation and password reset for nodejs",
"version": "3.4.0",
"url": "http://github.com/deitch/activator",
"author": "Avi Deitcher http://github.com/deitch",
"contributors": [
{
"name": "Avi Deitcher",
"url": "http://github.com/deitcher"
},
{
"name": "Sharry Stowell",
"url": "https://github.com/molinto"
},
{
"name": "Bartol Karuza",
"url": "https://github.com/bartolkaruza"
},
{
"name": "Clif Gordon",
"url": "https://github.com/ClifG"
},
{
"name": "Simon Boulet",
"url": "https://github.com/siboulet"
},
{
"name": "Stuart Longland",
"url": "https://github.com/sjlongland"
},
{
"name": "Alex Tracy",
"url": "http://github.com/alextracy"
}
],
"engines": {
"node": ">=4.0.0"
},
"main": "./lib/activator.js",
"dependencies": {
"async": "0.2.x",
"jsonwebtoken": "^5.7.0",
"lodash": ">=4.0.0",
"nodemailer": ">=1.3.4",
"styliner": "1.0.4"
},
"devDependencies": {
"body-parser": "^1.12.2",
"express": "4.x",
"mocha": "^5.2.0",
"should": "7.x.x",
"smtp-tester": "^1.2.0",
"supertest": "3.3.0"
},
"keywords": [
"express",
"email",
"sms",
"activation",
"nodejs",
"node",
"confirmation",
"two-step"
],
"scripts": {
"test": "node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "http://github.com/deitch/activator.git"
},
"bugs": "https://github.com/deitch/activator/issues",
"license": "MIT"
}