-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 980 Bytes
/
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
{
"name": "tneu-news-parser",
"version": "1.0.7",
"description": "Parse news articles at tneu.edu.ua",
"main": "index.js",
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint . --fix --format=node_modules/eslint-formatter-pretty",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vladgolubev/tneu-news-parser.git"
},
"author": "Vlad Holubiev",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladgolubev/tneu-news-parser/issues"
},
"homepage": "https://github.com/vladgolubev/tneu-news-parser#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.1",
"condense-whitespace": "^1.0.0",
"moment": "^2.15.0",
"normalize-newline": "^3.0.0"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"eslint": "^3.5.0",
"eslint-config-google": "0.6.0",
"eslint-formatter-pretty": "^1.1.0",
"jest": "^20.0.4"
},
"jest": {
"testEnvironment": "node"
}
}