-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "@tneu/news",
"version": "1.6.1",
"description": "TNEU News Parser",
"license": "MIT",
"repository": "tneudevteam/tneu-news",
"author": {
"name": "Vlad Holubiev",
"email": "golubev.vld@gmail.com",
"url": "vladholubiev.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "babel src --out-dir lib --ignore test.js",
"coverage": "jest --coverage",
"lint": "eslint . --fix",
"prepublishOnly": "yarn build",
"test": "jest src"
},
"files": ["src/", "!src/*.mock.html", "!src/*.test.js"],
"main": "lib/newsfeed.js",
"keywords": [],
"dependencies": {
"@babel/runtime": "^7.0.0-beta.40",
"bytes": "^3.0.0",
"cheerio": "^1.0.0-rc.2",
"date-fns": "^1.29.0",
"lodash": "^4.17.5",
"node-fetch": "^2.1.1",
"normalize-space-x": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0-beta.40",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.40",
"@babel/plugin-transform-async-to-generator": "^7.0.0-beta.40",
"@babel/plugin-transform-runtime": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.4.1",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.15.0-beta.16",
"jest": "^22.1.2",
"lint-staged": "^7.0.0",
"prettier": "^1.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"jest": {
"testEnvironment": "node"
},
"publishConfig": {
"access": "public"
}
}