-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.08 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
{
"name": "passport-akera",
"version": "1.0.1",
"description": "Akera authentication strategy for Passport.",
"keywords": [
"passport",
"akera",
"auth",
"authentication",
"identity"
],
"author": {
"name": "Liviu Mihaianu",
"email": "liviu.mihaianu@acorn.ro"
},
"main": "index.js",
"dependencies": {
"passport-strategy": ">=1.x.x",
"akera-api": ">=1.0.15"
},
"devDependencies": {
"mocha": "~1.21.4",
"should": ">= 5.0",
"jshint": ">= 2.6.0",
"jscs": ">= 1.11"
},
"bundledDependencies": ["akera-api"],
"scripts": {
"lint": "./node_modules/.bin/jshint ./lib",
"checkStyle": "./node_modules/.bin/jscs ./lib",
"test": "npm run-script lint && npm run-script checkStyle"
},
"license": {
"type": "MIT",
"url": "https://github.com/akera-io/passport-akera/raw/master/LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akera-io/passport-akera.git"
},
"bugs": {
"url": "https://github.com/akera-io/passport-akera/issues"
},
"engines": {
"node": ">= 0.4.0"
}
}