This repository has been archived by the owner on Apr 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.73 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
69
70
71
{
"name": "schedules",
"version": "0.1.0",
"description": "Web application to fetch classes over WebDAV",
"author": "Student Run Computing and Technology <srct@gmu.edu>",
"contributors": [
{
"name": "Mark Stenglein (ocelotsloth)",
"email": "mark@stengle.in"
}
],
"scripts": {
"start": "node ./bin/www",
"test": "mocha",
"precommit": "mocha"
},
"repository": {
"type": "git",
"url": "https://git.gmu.edu/srct/schedules"
},
"bugs": {
"url": "https://git.gmu.edu/srct/schedules/issues"
},
"dependencies": {
"app-module-path": "^2.1.0",
"body-parser": "~1.15.1",
"config": "^1.24.0",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.13.4",
"ical-generator": "^0.2.8",
"js-yaml": "^3.6.1",
"lodash": "^4.17.3",
"moment": "^2.17.1",
"morgan": "~1.7.0",
"mysql": "^2.11.1",
"node-sass": "^3.8.0",
"node-sass-middleware": "0.8.0",
"pug": "^2.0.0-beta6",
"sequelize": "^3.24.6",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"husky": "^0.11.9",
"lint-staged": "^3.2.1",
"mocha": "^3.0.2",
"mocha-standard": "^1.0.0",
"mockery": "^1.7.0",
"sinon": "^1.17.6",
"snazzy": "^5.0.0",
"standard": "^8.5.0"
},
"standard": {
"ignore": [
"/public/javascripts/bootstrap*.js",
"/public/javascripts/bootstrap/",
"/public/javascripts/fontawesome.js",
"/helpers/dataScrapers/"
]
},
"lint-staged": {
"*.js": "snazzy"
},
"license": "MIT"
}