This repository was archived by the owner on Jul 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.75 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.75 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
{
"name": "sedaily-recommendation-engine",
"version": "1.0.0",
"description": "Recommendation system for content based on user's history",
"main": "index.js",
"scripts": {
"build": "gulp",
"dev": "gulp serve",
"heroku-postbuild": "gulp deployBuild",
"lint": "esw *.js server config --color",
"lint:watch": "npm run lint -- --watch",
"start": "node dist/index.js",
"start.ingest": "node dist/index.js --ingest",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register tests/server --recursive",
"test:watch": "npm run test -- --watch",
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register tests --recursive",
"test:check-coverage": "npm run test:coverage && istanbul check-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareEngineeringDaily/sedaily-recommendation-engine.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SoftwareEngineeringDaily/sedaily-recommendation-engine/issues"
},
"homepage": "https://github.com/SoftwareEngineeringDaily/sedaily-recommendation-engine#readme",
"dependencies": {
"cors": "^2.8.5",
"del": "^3.0.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"hacker-news-api": "^2.0.0",
"http-status": "^1.2.0",
"joi": "^14.0.4",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.4.0",
"gulp-nodemon": "^2.4.1",
"gulp-sourcemaps": "^2.6.4"
}
}