-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "auth-token-header",
"version": "0.0.1",
"description": "Seneca module for storing auth token in header",
"main": "auth-token-header.js",
"scripts": {
"test": "lab test/*.test.js -r console -v -L -t 95",
"lint": "lab -dL",
"coverage": "lab -s test/*.test.js -r lcov | coveralls",
"annotate": "docco auth-token-header.js -o doc"
},
"keywords": [
"seneca",
"auth",
"plugin",
"cookie"
],
"repository": {
"type": "git",
"url": "https://github.com/senecajs/auth-token-header"
},
"files": [
"LICENSE.txt",
"README.md",
"auth-token-header.js",
"default-options.js"
],
"bugs": {
"url": "https://github.com/senecajs/auth-token-header/issues"
},
"homepage": "https://github.com/senecajs/auth-token-header",
"author": {
"name": "Mircea Alexandru",
"email": "[email protected]",
"url": "https://github.com/mirceaalexandru"
},
"contributors": [
{
"name": "Cristian Kiss",
"email": "[email protected]",
"url": "https://github.com/ckiss"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"lodash": "4.x.x"
},
"devDependencies": {
"code": "2.x.x",
"docco": "0.x.x",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-hapi": "4.x.x",
"eslint-plugin-standard": "1.x.x",
"lab": "8.x.x",
"seneca": "plugin"
}
}