-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 2.42 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
{
"name": "jsonfeed-to-rss",
"description": "Convert a JSON feed to an rss feed",
"version": "3.0.8",
"author": "Bret Comnes <[email protected]> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/jsonfeed-to-rss/issues"
},
"dependencies": {
"@bret/truthy": "^1.0.1",
"add-zero": "^1.0.0",
"clean-deep": "^3.0.2",
"existy": "^1.0.1",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.1",
"podcast-categories": "^2.0.0",
"sentence-splitter": "^5.0.0",
"striptags": "^3.2.0",
"trim-left": "^1.0.1",
"trim-right": "^1.0.1",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"auto-changelog": "^2.2.0",
"budo": "^11.2.2",
"cpx2": "^8.0.0",
"dependency-check": "^4.1.0",
"gh-release": "^7.0.0",
"npm-run-all": "^4.1.3",
"nyc": "^17.0.0",
"sitedown": "^5.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tape": "^5.0.1"
},
"homepage": "https://github.com/bcomnes/jsonfeed-to-rss#readme",
"keywords": [
"atom",
"json",
"jsonfeed",
"rss",
"xml"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/jsonfeed-to-rss.git"
},
"scripts": {
"build": "run-s clean && run-p build:*",
"build:md": "sitedown . -b build/ -l layout.html",
"build:static": "cpx '{snapshots,reference}/*' 'build'",
"clean": "rm -rf build && mkdir -p build",
"debug": "node --nolazy --inspect-brk=9229 node_modules/.bin/tape 'test.js'",
"prepublishOnly": "git push --follow-tags && gh-release -y",
"start": "run-s watch",
"test": "run-s test:*",
"test:deps": "dependency-check package.json --missing --unused --no-dev",
"test:lint": "standard --verbose | snazzy",
"test:tape": "nyc --reporter=lcov tape 'test.js' | tap-format-spec",
"update": "node generate-snapshot.js",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"version:snapshots": "npm run update && git add snapshots",
"watch": "run-s clean && run-p watch:*",
"watch:dir": "budo -d build --live --open",
"watch:md": "run-s build:md -- --watch",
"watch:static": "run-s build:static -- --watch"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
}
}