This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "feedparser-promised",
"version": "2.0.2",
"description": "Wrapper around feedparser with promises",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint src/**",
"format": "prettier-eslint \"src/**/*.js\" --write",
"pretest": "yarn lint",
"test": "jest",
"test:watch": "yarn test --watch",
"prepare": "babel src -d lib --ignore 'src/*.test.js'",
"commit": "git-cz",
"smoke": "docker-compose run smoke-test"
},
"files": [
"lib"
],
"dependencies": {
"@types/feedparser": "2.2.1",
"@types/request": "2.48.1",
"feedparser": "2.2.9",
"request": "2.88.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"commitizen": "^3.1.1",
"eslint": "5.16.0",
"faker": "4.1.0",
"ghooks": "^2.0.4",
"jest": "24.8.0",
"nock": "10.0.6",
"prettier-eslint-cli": "4.7.1",
"validate-commit-msg": "^2.14.0",
"xmlbuilder": "^13.0.2"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/alabeduarte/feedparser-promised.git"
},
"keywords": [
"feed",
"rss",
"node",
"nodejs",
"javascript",
"parser",
"promise"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"config": {
"validate-commit-msg": {
"helpMessage": "If you are unsure on how to structure your commit message, execute 'yarn commit' for a step-by-step.",
"autoFix": true
},
"ghooks": {
"pre-commit": "yarn lint",
"commit-msg": "validate-commit-msg",
"pre-push": "yarn test"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "Alabe Duarte",
"license": "MIT",
"bugs": {
"url": "https://github.com/alabeduarte/feedparser-promised/issues"
},
"homepage": "https://github.com/alabeduarte/feedparser-promised#readme"
}