forked from JohanObrink/fake-sso-idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "fake-sso-idp",
"version": "0.4.0",
"description": "Fake idp endpoint for testing",
"main": "lib/idp.js",
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"test": "eslint lib/**/*.js test/**/*.js && mocha test/**/*.js",
"patch-release": "npm version patch && npm publish && git push origin master --follow-tags",
"minor-release": "npm version minor && npm publish && git push origin master --follow-tags",
"major-release": "npm version major && npm publish && git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:JohanObrink/fake-sso-idp.git"
},
"author": "Johan Öbrink <johan.obrink@gmail.com>",
"bugs": {
"url": "https://github.com/JohanObrink/fake-sso-idp/issues"
},
"homepage": "https://github.com/JohanObrink/fake-sso-idp#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"extend": "^3.0.2",
"ip": "^1.1.5",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"purecss": "^1.0.1",
"serve-favicon": "^2.5.0",
"xml-crypto": "^1.4.0",
"xml2json": "^0.11.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.0.0",
"proxyquire": "^2.1.3",
"sinon": "^8.0.4",
"sinon-chai": "^3.4.0"
}
}