forked from metalsmith/rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "@metalsmith/rss",
"version": "1.0.1",
"description": "Metalsmith plugin to generate rss feed",
"keywords": [
"metalsmith",
"metalsmith-plugin"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/metalsmith/rss.git"
},
"homepage": "https://github.com/metalsmith/rss",
"bugs": {
"url": "https://github.com/metalsmith/rss/issues"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"lib"
],
"main": "lib/index.js",
"dependencies": {
"rss": "^1.2.2"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"metalsmith": "^2.3.0",
"prettier": "^2.6.2",
"tap": "^14.10.8"
},
"scripts": {
"format": "prettier --write \"**/*.{yml,md,js,json}\"",
"format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"",
"lint": "eslint --fix .",
"lint:check": "eslint --fix-dry-run .",
"tap": "tap test -J",
"test": "npm run lint && npm run tap",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish --scope=@metalsmith"
},
"engines": {
"node": ">=12"
}
}