-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
{
"name": "passport-shibboleth",
"version": "4.0.1",
"description": "A small SAML Service Provider for Brown University applications.",
"homepage": "https://github.brown.edu/BrownUniversity/passport-shibboleth",
"private": true,
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --ignore-pattern node_modules src example test",
"flow": "flow",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"validate": "npm-run-all lint flow test:coverage",
"prebuild": "npm run validate && rm -rf dist",
"build": "webpack",
"postinstall": "rm -rf src test example"
},
"author": "Sumner Warren <[email protected]>",
"engines": {
"node": ">=10"
},
"dependencies": {
"passport-saml": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"cookie-parser": "^1.4.3",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-prettier": "^3.0.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"fetch-cookie": "^0.7.2",
"flow-bin": "^0.87.0",
"flow-typed": "^2.5.1",
"jest": "^23.6.0",
"node-fetch": "^2.3.0",
"npm-run-all": "^4.1.5",
"passport": "^0.3.0",
"prettier": "^1.15.3",
"samlp": "^3.4.0",
"selfsigned": "^1.10.4",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text-summary",
"lcov"
]
}
}