зеркало из https://github.com/GoogleChrome/kino.git
38 строки
988 B
JSON
38 строки
988 B
JSON
{
|
|
"name": "web-dev-media",
|
|
"version": "1.0.0-alpha",
|
|
"description": "A sample video PWA built for web.dev/media",
|
|
"main": "src/index.js",
|
|
"author": "Google",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint . --fix",
|
|
"start": "firebase serve --only hosting",
|
|
"build": "rollup -c",
|
|
"watch": "rollup -c -w"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.12.13",
|
|
"@babel/eslint-plugin": "^7.12.13",
|
|
"@babel/preset-env": "^7.12.13",
|
|
"eslint": "^7.18.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-plugin-compat": "^3.9.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jest": "^24.1.3",
|
|
"eslint-plugin-jsdoc": "^30.7.13",
|
|
"husky": "^4.3.8",
|
|
"jest": "^26.6.3",
|
|
"rollup": "^2.38.5",
|
|
"rollup-plugin-execute": "^1.1.1",
|
|
"rollup-plugin-import-css": "^2.0.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run lint"
|
|
}
|
|
}
|
|
}
|