-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 862 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 862 Bytes
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
{
"name": "courses",
"version": "1.0.0",
"description": "Search engine for all courses provided at [The University of Texas at Austin](https://utexas.edu)",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"ejs": "^2.4.2",
"express": "^4.14.0",
"mongodb": "^2.1.18",
"requests": "^0.1.7"
},
"devDependencies": {
"mocha": "^2.5.3"
},
"scripts": {
"start": "node src/server.js",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utexasdev/courses.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/utexasdev/courses/issues"
},
"homepage": "https://github.com/utexasdev/courses#readme"
}