-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
68 lines (68 loc) · 1.55 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
{
"name": "grunt-uncss",
"description": "A grunt task for generating CSS files containing only those styles used in your project.",
"version": "0.10.1",
"homepage": "https://github.com/uncss/grunt-uncss",
"author": "Addy Osmani <addyosmani@gmail.com> (https://addyosmani.com/)",
"maintainers": [
"Addy Osmani <addyosmani@gmail.com> (https://addyosmani.com/)",
"XhmikosR <xhmikosr@gmail.com> (https://github.com/XhmikosR)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uncss/grunt-uncss.git"
},
"bugs": {
"url": "https://github.com/uncss/grunt-uncss/issues"
},
"license": "MIT",
"keywords": [
"gruntplugin",
"uncss",
"css"
],
"files": [
"tasks/*.js"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"mocha": "mocha \"tests/*.js\"",
"xo": "xo",
"fix": "xo --fix",
"test": "npm run xo && grunt test && npm run mocha"
},
"dependencies": {
"chalk": "^4.1.2",
"maxmin": "^3.0.0",
"uncss": "^0.17.3"
},
"devDependencies": {
"chai": "^4.3.6",
"grunt": "^1.5.3",
"mocha": "^10.2.0",
"time-grunt": "^2.0.0",
"xo": "^0.53.1"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"xo": {
"space": 4,
"ignores": [
"tests/app/**"
],
"rules": {
"capitalized-comments": "off",
"comma-dangle": "off",
"object-curly-spacing": [
"error",
"always"
],
"unicorn/filename-case": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}