-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.86 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "gaps",
"version": "0.10.4",
"description": "Gaps searches through your Plex Server for all movies, then queries for known movies in the same collection. If those movies don't exist in your library, Gaps will recommend getting those movies, legally of course.",
"main": "/",
"dependencies": {
"cssnano": "^5.0.14",
"faker": "^5.5.3",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"uglify-es": "^3.3.9",
"uglify-js": "^3.14.5",
"uglifyjs-folder": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"cypress": "^9.5.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7"
},
"scripts": {
"e2e": "cypress open",
"minify-input-css": "postcss GapsWeb/src/main/resources/static/css/input.css > GapsWeb/src/main/resources/static/css/input.min.css",
"uglifyjs-modules": "rm -f GapsWeb/src/main/resources/static/js/modules/*.min.js && uglifyjs-folder GapsWeb/src/main/resources/static/js/modules/ -eo GapsWeb/src/main/resources/static/js/modules/\n",
"uglifyjs-pages": "rm -f GapsWeb/src/main/resources/static/js/page/*.min.js && uglifyjs-folder GapsWeb/src/main/resources/static/js/page/ -eo GapsWeb/src/main/resources/static/js/page/\n",
"eslint-cypress": "./node_modules/.bin/eslint --fix cypress/integration",
"eslint-gaps": "./node_modules/.bin/eslint --fix GapsWeb/src/main/resources/static/js",
"test": "jest --verbose __tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonHHouse/Gaps.git"
},
"author": "Jason House",
"license": "ISC",
"bugs": {
"url": "https://github.com/JasonHHouse/Gaps/issues"
},
"homepage": "https://github.com/JasonHHouse/Gaps#readme"
}