-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 KB
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
{
"name": "plex-imdb-chrome",
"version": "0.1.0",
"description": "Chrome extension to generate Plex-friendly filenames based on IMDB",
"private": true,
"scripts": {
"watch": "node ./node_modules/webpack/bin/webpack.js --mode=development --watch --config config/webpack.config.js",
"build": "node ./node_modules/webpack/bin/webpack.js --mode=production --config config/webpack.config.js",
"zip": "cd build && zip -r ../${npm_package_name}.zip .",
"cleanup": "rm -f ${npm_package_name}.zip && rm -rf build/*",
"release": "npm run cleanup && npm run build && npm run zip",
"lint": "eslint --ext .ts,.js --max-warnings=0 .",
"prettier": "prettier --write"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^0.10.1",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
"size-plugin": "^1.2.0",
"webpack": "^5.105.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.10.0"
}
}