-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "@kentcdodds/podcastify-dir",
"version": "0.0.0-semantically-released",
"publishConfig": {
"access": "public"
},
"description": "Take a directory of audio files and syndicate them with an rss feed",
"main": "dist/index.js",
"keywords": [],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/podcastify-dir"
},
"bugs": {
"url": "https://github.com/kentcdodds/podcastify-dir/issues"
},
"homepage": "https://github.com/kentcdodds/podcastify-dir#readme",
"files": [
"dist"
],
"scripts": {
"start": "node index.js",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-rate-limit": "^5.3.0",
"fast-sort": "^3.0.2",
"loglevel": "^1.7.1",
"music-metadata": "^7.8.8",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/register": "^7.14.5",
"kcd-scripts": "^11.1.0",
"nodemon": "^2.0.12"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}