-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "feathers-saml",
"version": "1.2.0",
"description": "SAML2 authentication for Feathers using SAML2-js. Makes Feathers act as a Service Provider.",
"main": "lib/",
"types": "lib/",
"engines": {
"node": ">= 10"
},
"scripts": {
"start": "ts-node test/app",
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc"
},
"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",
"saml2-js": "^4.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.1",
"@types/saml2-js": "^1.6.8",
"axios": "^0.21.1",
"shx": "^0.3.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "git://github.com/winteragency/feathers-saml.git"
},
"keywords": [
"feathers",
"feathers-plugin"
],
"author": "Winter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/winteragency/feathers-saml/issues"
},
"homepage": "https://github.com/winteragency/feathers-saml#readme"
}