-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "passport-pam",
"version": "0.1.4",
"description": "Linux PAM authenticator for Passport",
"keywords": [
"linux",
"pam",
"passport",
"auth",
"authn",
"authentication",
"username",
"password"
],
"author": {
"name": "Jared C"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"repository": {
"type": "git",
"url": "git://github.com/oakaigh/passport-pam.git",
"github": "https://github.com/oakaigh/passport-pam"
},
"files": [
"dist/**/*"
],
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "if [ \"${NODE_ENV}\" = 'production' ]; then tsc -p tsconfig.${NODE_ENV}.json; else tsc -p tsconfig.json; fi",
"prepare": "npm run clean && npm run build"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.4",
"@types/passport": "^1.0.7",
"@types/passport-http": "^0.3.9",
"@types/passport-local": "^1.0.34",
"typescript": "^4.4.4",
"express": "^4.17.1",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0"
},
"dependencies": {
"tslib": "^2.3.1",
"passport": "^0.5.0",
"node-linux-pam": "^0.2.1"
}
}