forked from waterlock/waterlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.11 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
{
"name": "waterlock",
"version": "v0.1.2-rc1",
"author": "David Rivera <david.r.rivera193@gmail.com>",
"description": "User authentication and Json Web Tokens for Sails",
"homepage": "http://waterlock.ninja/",
"contributors": [
{
"name": "David Rivera",
"email": "david.r.rivera193@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/waterlock/waterlock"
},
"bugs": {
"url": "https://github.com/waterlock/waterlock/issues"
},
"scripts": {
"test": "make test"
},
"bin": {
"waterlock": "./bin/waterlock.js"
},
"keywords": [
"waterlock",
"sails",
"authentication",
"json web tokens",
"jwt"
],
"dependencies": {
"commander": "~2.8.1",
"jwt-simple": "~0.3.0",
"lodash": "~3.8.0",
"moment": "~2.10.3",
"node-uuid": "~1.4.3",
"winston": "~1.0.0"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"proxyquire": "*",
"coveralls": "*",
"istanbul": "*",
"sails": "*",
"jshint": "*"
},
"preferGlobal": false,
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}