-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "@turbasen/auth",
"version": null,
"description": "Authentication middleware used internally at Nasjonal Turbase API",
"main": "index.js",
"files": [
"examples",
"index.js",
"lib"
],
"scripts": {
"codacy-coverage": "codacy-coverage",
"cover": "istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- -r test/support/env -R spec test/**",
"lint": "eslint test/ lib/ index.js",
"nsp": "nsp check",
"semantic-release": "semantic-release",
"test": "mocha -r test/support/env -R tap -b --check-leaks test/**",
"test:watch": "mocha -r test/support/env -R progress -b --check-leaks -w test/**",
"greenkeeper-postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Turbasen/Auth.git"
},
"keywords": [
"nasjonal turbase",
"turbasen",
"user",
"auth",
"middleware",
"connect",
"express"
],
"author": "Hans Kristian Flaatten <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turbasen/Auth/issues"
},
"homepage": "https://github.com/Turbasen/Auth#readme",
"peerDependencies": {
"@starefossen/http-error": "^1.0.0",
"@turbasen/db-mongo": "^1.0.0",
"@turbasen/db-redis": "^1.0.0",
"express": "^4.13.4"
},
"devDependencies": {
"@starefossen/http-error": "^1.0.0",
"@turbasen/db-mongo": "^1.0.0",
"@turbasen/db-redis": "^1.0.0",
"@turbasen/test-data": "^1.0.1",
"codacy-coverage": "^1.1.3",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.11.0",
"express": "^4.13.4",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"nsp": "^2.5.0",
"semantic-release": "^4.3.5",
"sinon": "^1.17.4",
"supertest": "^1.2.0"
},
"engines": {
"node": ">=4.0.0"
}
}