56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "youtube-dl-web",
|
|
"version": "1.1.1",
|
|
"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://git.w33ble.com/w33ble/youtube-dl-web.git"
|
|
},
|
|
"keywords": [],
|
|
"files": [
|
|
"src/",
|
|
"index.js",
|
|
"CHANGELOG.md",
|
|
"AUTHORS.md"
|
|
],
|
|
"author": "Joe Fleming (https://git.w33ble.com/w33ble)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://git.w33ble.com/w33ble/youtube-dl-web/issues"
|
|
},
|
|
"homepage": "https://git.w33ble.com/w33ble/youtube-dl-web",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "^7.0.1",
|
|
"pino": "^5.15.0",
|
|
"pino-pretty": "^3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@w33ble/npm-auto-tools": "*",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-config-prettier": "^6.9.0",
|
|
"eslint-plugin-import": "^2.19.1",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"husky": "^3.1.0",
|
|
"lint-staged": "^9.5.0",
|
|
"prettier": "^1.19.1"
|
|
}
|
|
}
|