-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.65 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
{
"name": "overflow-news",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"coverage:all": "jest -c=.coverage-jest.json --silent",
"coveralls": "npm run coverage:all && coveralls < coverage/lcov.info",
"lint": "eslint src/",
"start:worker": "node ./src/worker.js",
"start:server": "node ./src/server.js",
"start:dev_worker": "nodemon ./src/worker.js",
"start:dev_server": "nodemon ./src/server.js",
"test:strict": "jest",
"test": "npm run lint && npm run test:strict"
},
"repository": {
"type": "git",
"url": "git+https://github.com/di3goleite/overflow-news.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/di3goleite/overflow-news/issues"
},
"homepage": "https://overflow.news",
"jest": {
"transform": {
"\\.js?$": "babel-jest"
},
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"dependencies": {
"cors": "^2.8.4",
"cron": "^1.3.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-graphql": "^0.6.12",
"feedparser": "^2.2.4",
"graphql": "^0.13.2",
"graphql-tools": "^2.23.1",
"kue": "^0.11.6",
"moment": "^2.21.0",
"mongoose": "^5.0.9",
"pino": "^4.17.3",
"raven": "^2.5.0",
"request": "^2.83.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"jest": "^22.4.3",
"nodemon": "^1.17.2"
}
}