-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 KB
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
{
"name": "csc-server",
"version": "1.0.6",
"description": "CSC Framework RSSP in Node.js",
"keywords": [
"digital signature",
"cloud signature consortium",
"remote service signature provider",
"signature",
"csc"
],
"homepage": "https://github.com/simionrobert/CSC-Framework#readme",
"bugs": {
"url": "https://github.com/simionrobert/CSC-Framework/issues"
},
"license": "MIT",
"author": "Simion Robert",
"bin": {
"csc-server": "./bin/csc-server"
},
"repository": {
"url": "git://github.com/simionrobert/CSC-Framework.git"
},
"scripts": {
"debug": "nodemon --inspect ./bin/csc-server -l",
"debug-test": "nodemon --inspect ./bin/csc-server --createUser --user=t --pass=t --pin=1111",
"build-cli": "npm link",
"lint": "eslint .",
"test": "echo \"Valid: no test specified\" && exit 0"
},
"dependencies": {
"@fidm/x509": "^1.2.1",
"base64-url": "^2.3.3",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^4.2.0",
"http-errors": "^1.7.3",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"mongoose": "^5.8.11",
"morgan": "^1.9.1",
"oauth2orize": "^1.11.0",
"passport": "^0.4.1",
"passport-custom": "^1.1.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"portfinder": "^1.0.25",
"validator": "^13.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^7.14.0",
"mocha": "^8.2.1"
},
"private": false,
"publishConfig": {
"access": "public"
}
}