-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "nlp_project",
"version": "0.1.0",
"description": "A Natural Language Processing App",
"main": "./index.js",
"engines": {
"node": ">= 0.10.x"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timcmiller/nlp_project.git"
},
"keywords": [
"mongoose",
"mongodb",
"node",
"express"
],
"author": "Robin Stringer, Tim Miller, Ansoo Chang, Kenji Crosland",
"license": "MIT",
"bugs": {
"url": "https://github.com/timcmiller/nlp_project/issues"
},
"homepage": "https://github.com/timcmiller/nlp_project#readme",
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"lodash": "^3.10.1",
"mongoose": "^4.2.5",
"twitter": "^1.2.5",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-http": "^1.0.0",
"gulp": "^3.9.0",
"gulp-jshint": "^1.12.0",
"gulp-mocha": "^2.1.3",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.3"
}
}