forked from senecajs/seneca-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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": "seneca-user",
"description": "User management plugin for the seneca module.",
"version": "0.3.0",
"keywords": [
"seneca",
"user",
"plugin"
],
"author": {
"name": "Richard Rodger",
"email": "[email protected]",
"url": "http://richardrodger.com/"
},
"license": "MIT",
"main": "user.js",
"scripts": {
"test": "lab -P test -r console -v -m 3000 -t 76",
"lint": "lab -dL",
"coverage": "lab -s -P test -r lcov | coveralls",
"annotate": "docco user.js -o doc"
},
"files": [
"LICENSE.txt",
"README.md",
"user.js",
"default-options.json"
],
"contributors": [
{
"name": "Mircea Alexandru",
"email": "[email protected]",
"url": "http://www.alexandrumircea.ro"
},
{
"name": "Cristian Kiss",
"email": "[email protected]",
"url": "https://github.com/ckiss"
}
],
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"eraro": "0.4.1",
"lodash": "3.10.1",
"node-uuid": "1.4.7"
},
"devDependencies": {
"code": "1.5.0",
"coveralls": "2.11.6",
"docco": "0.7.0",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-hapi": "4.x.x",
"eslint-plugin-standard": "1.x.x",
"lab": "6.x.x",
"seneca": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/seneca-user.git"
}
}