-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 KB
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
{
"name": "backend",
"version": "1.0.0",
"description": "Nodejs backend for SentiSocial",
"main": "app.js",
"scripts": {
"test": "jasmine",
"test-cov": "nyc --all --include src jasmine",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SentiSocial/backend.git"
},
"keywords": [
"Twitter",
"Trends",
"Sentiment",
"Analysis"
],
"author": "GunshipPenguin,suchaHassle,omarChehab98,DennisTDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/SentiSocial/backend/issues"
},
"homepage": "https://github.com/SentiSocial/backend#readme",
"dependencies": {
"express": "^4.14.0",
"keyword-extractor": "0.0.13",
"mongoose": "^4.7.6",
"node-persist": "^2.0.11",
"request": "^2.79.0",
"sentiment": "^2.1.0",
"twitter": "^1.7.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.13.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"jasmine": "^2.5.2",
"mockgoose": "^6.0.8",
"nock": "^9.0.2",
"node-mocks-http": "^1.5.6",
"nyc": "^10.3.2",
"pre-commit": "^1.2.2",
"rewire": "^2.5.2"
},
"pre-commit": [
"lint",
"test-cov"
]
}