forked from SickChill/sickchill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.1 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
{
"name": "sickchill",
"version": "4.0.72",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/SickChill/SickChill.git"
},
"bugs": {
"url": "https://github.com/SickChill/SickChill/issues"
},
"homepage": "https://github.com/SickChill/SickChill#readme",
"scripts": {
"test": "xo --verbose && ava --verbose",
"security": "snyk test"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.24.0",
"bower": "^1.8.8",
"browser-env": "^3.1.0",
"eslint": "^6.8.0",
"grunt": "^1.0.1",
"grunt-bower-concat": "git+https://github.com/miigotu/grunt-bower-concat.git",
"grunt-bower-task": "git+https://github.com/miigotu/grunt-bower-task.git",
"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",
"lodash": "^4.17.15",
"snyk": "^1.28.1",
"webpack": "^4.43.0",
"xo": "0.30.0"
},
"ava": {
"require": [
"./tests/js/helpers/setup-browser-env.js"
],
"files": [
"tests/js/**/*.js"
],
"source": [
"sickchill/gui/slick/js/**/*.{js,jsx}",
"!dist/**/*",
"!lib/**/*",
"!**/*.min.js"
]
},
"xo": {
"space": 4,
"rules": {
"unicorn/filename-case": "off",
"unicorn/prefer-node-append": "off"
},
"esnext": true,
"envs": [
"browser"
],
"globals": [
"_",
"scRoot",
"jQuery",
"$",
"metaToBool",
"getMeta",
"PNotify",
"themeSpinner",
"anonURL",
"Gettext",
"gt",
"_n",
"latinize"
],
"ignores": [
"core.min.js",
"vendor.min.js",
"lib/**/*",
"Gruntfile.js",
"sickchill/gui/slick/js/lib/*"
]
}
}