This repository has been archived by the owner on May 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cobalt-uoft",
"version": "0.6.2",
"description": "Open data APIs for interfacing with public information from the University of Toronto.",
"main": "lib/index.js",
"engines": {
"node": "^5.6"
},
"repository": {
"type": "git",
"url": "https://github.com/cobalt-uoft/cobalt.git"
},
"author": "Cobalt",
"license": "MIT",
"bugs": {
"url": "https://github.com/cobalt-uoft/cobalt/issues"
},
"homepage": "https://cobalt.qas.im",
"keywords": [
"cobalt",
"uoft",
"api",
"opendata",
"uoft-course-api",
"uoft-building-api",
"course-api",
"building-api",
"courses",
"buildings",
"university of toronto",
"toronto",
"express"
],
"scripts": {
"build": "rm -rf lib && ./node_modules/.bin/babel src/ -d lib/",
"dev": "npm run build && ./bin/dev",
"start": "./bin/cobalt",
"lint": "eslint ./src",
"test": "ava",
"prepush": "npm run lint && npm test",
"prepublish": "npm run build",
"coverage": "nyc npm test",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"files": [
"test/*"
],
"failFast": true,
"require": [
"babel-register"
]
},
"nyc": {
"exclude": [
"src/index.js",
"src/db/index.js",
"src/api/athletics/routes/filterMapReduce.js",
"src/api/courses/routes/filterMapReduce.js",
"src/api/exams/routes/filterMapReduce.js"
]
},
"bin": {
"cobalt": "./bin/cobalt"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"co": "^4.6.0",
"express": "^4.13.4",
"minimist": "^1.2.0",
"mongoose": "^4.4.14",
"node-schedule": "^1.1.0",
"winston": "^2.2.0"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"gaze": "^1.0.0",
"husky": "^0.11.4",
"nodemon": "^1.9.2",
"nyc": "^6.4.2",
"supertest": "^1.2.0"
}
}