-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.82 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
{
"name": "karma",
"version": "1.0.0-alpha-1",
"private": true,
"description": "Back-end API framework for colleges.",
"homepage": "https://github.com/ccfcet/karma",
"repository": {
"type": "git",
"url": "https://github.com/ccfcet/karma"
},
"bugs": {
"url": "https://github.com/ccfcet/karma/issues",
"email": "[email protected]"
},
"scripts": {
"docs": "apidoc -i routes/ -o apidoc/",
"dev": "DEBUG=karma:* nodemon ./bin/www",
"start": "NODE_ENV=production node ./bin/www",
"lint": "./node_modules/.bin/eslint ./ --report-unused-disable-directives --format 'node_modules/eslint-friendly-formatter'",
"lint--fix": "./node_modules/.bin/eslint ./ --fix --report-unused-disable-directives --format 'node_modules/eslint-friendly-formatter'",
"test": "DEBUG=karma:* NODE_ENV=test nyc --reporter=html mocha --check-leaks --delay --exit --forbid-only --forbid-pending --use_strict --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"authentication": "file:./lib/authentication",
"bcrypt": "^3.0.7",
"celebrate": "^8.0.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"data": "file:./lib/data",
"debug": "^3.1.0",
"express": "~4.16.3",
"grunt": "^1.0.4",
"helmet": "^3.21.1",
"http-errors": "~1.6.2",
"lodash": "^4.17.13",
"morgan": "~1.9.0"
},
"devDependencies": {
"apidoc": "^0.17.6",
"chai": "^4.2.0",
"chai-exclude": "^1.0.12",
"chai-http": "^4.3.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.13.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"author": "Central Computing Facility, College of Engineering Trivandrum",
"license": "AGPL-3.0-or-later"
}