-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.1 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
67
68
69
70
71
72
73
{
"name": "Authentication-Authorization-Module",
"version": "0.0.2",
"private": true,
"apidoc": {
"description": "API documentation",
"title": "API doc",
"url": "/api"
},
"author": "e-UCM Research Group",
"license": "Apache 2.0",
"scripts": {
"docker-start": "npm run fast-setup && npm run register-root && npm start",
"jscs-fix": "jscs . --fix",
"start": "node ./bin/www",
"lint": "jshint --verbose . && npm run jscs-fix",
"setup": "node ./setup.js",
"fast-setup": "SETUP_MODE=fast node ./setup.js",
"fast-setup-win": "set NODE_ENV=test&& npm run setup",
"register-root": "SETUP_MODE=register-root node ./setup.js",
"test": "npm run lint && NODE_ENV=test ./node_modules/mocha/bin/_mocha --recursive -R spec",
"test-win": "npm run lint && set NODE_ENV=test&& mocha --recursive -R spec",
"test-travis": "npm run lint && npm run fast-setup && NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"gen-apidoc": "apidoc -i ./routes -o ./public/apirest"
},
"dependencies": {
"acl": "0.4.9",
"async": "^1.3.x",
"body-parser": "^1.13.x",
"cookie-parser": "*",
"debug": "^2.2.x",
"emailjs": "^1.0.x",
"express": "~4.13.x",
"express-jwt": "*",
"http-proxy": "*",
"http-status": "^1.2.0",
"jade": "^1.11.x",
"jsonwebtoken": "^5.4.x",
"jsonschema": "*",
"lodash": "*",
"mongodb": "^2.2.x",
"mongoose": "^4.7.x",
"morgan": "^1.6.x",
"multer": "*",
"passport": "^0.3.x",
"passport-local-mongoose": "3.1.x",
"passport-lti": "*",
"passport-oauth2": "1.4.0",
"passport-saml": "0.15.x",
"path-to-regexp": "^1.2.x",
"q": "*",
"redis": "*",
"request": "*",
"validator": "*"
},
"devDependencies": {
"apidoc": "0.15.x",
"assert": "*",
"confidence": "*",
"coveralls": "*",
"grunt": "^0.4.5",
"handlebars": "*",
"istanbul": "*",
"jquery": "*",
"jscs": "2.3.5",
"jshint": "*",
"ims-lti": "*",
"mocha": "3.5.3",
"promptly": "*",
"should": "*",
"supertest": "*"
}
}