forked from SickChill/sickchill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.49 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "sickrage",
"version": "4.0.72",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/SickRage/SickRage.git"
},
"bugs": {
"url": "https://github.com/SickRage/SickRage/issues"
},
"homepage": "https://github.com/SickRage/SickRage#readme",
"scripts": {
"test": "xo --verbose && ava --verbose",
"security": "snyk test"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.24.0",
"browser-env": "^3.1.0",
"grunt": "^1.0.1",
"grunt-bower-concat": "^1.0.0",
"grunt-bower-task": "^0.5.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-po2json": "git+https://github.com/rockykitamura/grunt-po2json.git",
"jquery": "^3.2.1",
"load-grunt-tasks": "^3.5.2",
"npm-check-updates": "^2.10.5",
"snyk": "^1.28.1",
"xo": "^0.18.2"
},
"ava": {
"require": [
"./tests/js/helpers/setup-browser-env.js"
],
"files": [
"tests/js/**/*.js"
],
"source": [
"gui/slick/js/**/*.{js,jsx}",
"!dist/**/*",
"!lib/**/*",
"!**/*.min.js"
]
},
"xo": {
"space": 4,
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"unicorn/no-new-buffer": "off",
"unicorn/filename-case": "off",
"unicorn/custom-error-definition": "off",
"unicorn/no-array-instanceof": "off",
"unicorn/catch-error-name": "off",
"unicorn/no-process-exit": "off",
"unicorn/throw-new-error": "off",
"unicorn/number-literal-case": "off",
"unicorn/prefer-starts-ends-with": "off",
"unicorn/prefer-type-error": "off",
"unicorn/explicit-length-check": "off",
"unicorn/no-abusive-eslint-disable": "off",
"prefer-arrow-callback": "off",
"object-shorthand": [
"error",
"never"
]
},
"esnext": false,
"envs": [
"browser"
],
"globals": [
"_",
"srRoot",
"jQuery",
"$",
"metaToBool",
"getMeta",
"PNotify",
"themeSpinner",
"anonURL",
"Gettext",
"gt",
"_n"
],
"ignores": [
"core.min.js",
"vender.min.js",
"lib/**/*",
"Gruntfile.js"
]
}
}