-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.35 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
90
91
92
93
94
95
96
97
{
"name": "podcast-automation",
"version": "0.0.0-semantically-released",
"description": "Automating your podcasting tasks",
"main": "dist/index.js",
"scripts": {
"start": "package-scripts",
"test": "package-scripts test",
"ngair": "node angularair/podcastify-youtube-video.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"cli-progress-bar": "1.0.0",
"filenamify": "1.2.1",
"imagina": "0.1.4",
"inquirer": "1.0.3",
"lodash": "4.13.1",
"mv": "2.1.1",
"random-emoji": "1.0.1",
"shell-escape": "0.2.0",
"spawn-command": "0.0.2-1",
"which": "1.2.10",
"youtube-mp3-downloader": "0.4.4"
},
"devDependencies": {
"all-contributors-cli": "^3.0.0",
"ava": "^0.14.0",
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-node6": "11.0.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"codecov": "^1.0.1",
"commitizen": "^2.8.1",
"condition-node-version": "^1.3.0",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.9.0",
"eslint-config-kentcdodds": "^6.2.1",
"ghooks": "^1.2.1",
"nyc": "^6.4.0",
"opt-cli": "^1.4.2",
"p-s": "^0.4.0",
"rimraf": "^2.5.2",
"semantic-release": "^6.2.1",
"validate-commit-msg": "^2.6.1"
},
"eslintConfig": {
"extends": "kentcdodds/es-next",
"rules": {
"no-console": "off"
}
},
"ava": {
"require": [
"babel-register"
]
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
},
"release": {
"verifyConditions": {
"path": "condition-node-version",
"node": "^4",
"verbose": true
}
},
"config": {
"ghooks": {
"commit-msg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"pre-commit": "opt --in pre-commit --exec \"npm start validate\""
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/podcast-automation.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/podcast-automation/issues"
},
"homepage": "https://github.com/kentcdodds/podcast-automation#readme"
}