initial commit

This commit is contained in:
2019-09-27 10:37:02 -07:00
commit b66eb8abe7
13 changed files with 2386 additions and 0 deletions

51
package.json Normal file
View File

@@ -0,0 +1,51 @@
{
"name": "youtube-dl-web",
"version": "0.0.0",
"description": "youtube-dl wrapped in a simple web server",
"main": "index.js",
"scripts": {
"lint": "eslint '*.{js,ts}' 'src/**/*.{js,ts}'",
"test": "npm run lint",
"version": "npm-auto-version",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w33ble/youtube-dl-web.git"
},
"keywords": [],
"files": [
"src/",
"index.js",
"CHANGELOG.md",
"AUTHORS.md"
],
"author": "Joe Fleming (https://github.com/w33ble)",
"license": "MIT",
"bugs": {
"url": "https://github.com/w33ble/youtube-dl-web/issues"
},
"homepage": "https://github.com/w33ble/youtube-dl-web",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {},
"devDependencies": {
"@w33ble/npm-auto-tools": "*",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.0.5",
"lint-staged": "^9.4.0",
"prettier": "^1.16.4"
}
}