-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "passport-freeipa",
"version": "1.0.0",
"description": "Freeipa username and password authentication strategy for Passport.",
"main": "src/",
"files": [
"src"
],
"scripts": {
"test": "mocha --reporter spec --require test/bootstrap/node test/*.test.js",
"test:tdd": "npm run test -- --watch",
"test:coverage": "./node_modules/.bin/nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lucasdiedrich/passport-freeipa.git"
},
"keywords": [
"Passport",
"Freeipa",
"IDM",
"Auth"
],
"author": {
"name": "Lucas Diedrich",
"url": "https://http://github.com/lucasdiedrich/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasdiedrich/passport-freeipa/issues"
},
"homepage": "https://github.com/lucasdiedrich/passport-freeipa#readme",
"dependencies": {
"node-freeipa": "^2.1.0",
"passport": "^0.4.0",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-passport-strategy": "^1.0.1",
"mocha": "^5.1.1",
"nyc": "^11.8.0"
}
}