-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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": "feathers-windowsauth",
"version": "1.0.1",
"description": "Active Directory/LDAP authentication for Feathers using passport-windowsauth.",
"main": "lib/",
"types": "lib/",
"engines": {
"node": ">= 10"
},
"scripts": {
"start": "ts-node test/app",
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"test": "mocha --opts ../../mocha.ts.opts --recursive test/**.test.ts test/**/*.test.ts"
},
"directories": {
"lib": "lib"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^4.4.3",
"@feathersjs/errors": "^4.4.3",
"@feathersjs/express": "^4.4.3",
"@feathersjs/feathers": "^4.4.3",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"passport-windowsauth": "^3.0.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.1",
"@types/passport": "^1.0.2",
"axios": "^0.19.0",
"mocha": "^6.2.2",
"shx": "^0.3.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "git://github.com/winteragency/feathers-windowsauth.git"
},
"keywords": [
"feathers",
"feathers-plugin"
],
"author": "Winter <info@winteragency.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/winteragency/feathers-windowsauth/issues"
},
"homepage": "https://github.com/winteragency/feathers-windowsauth#readme"
}