forked from GoalSmashers/css-minification-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.83 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
{
"name": "css-minification-benchmark",
"version": "1.0.0",
"description": "Benchmark of popular CSS minification tools.",
"author": "Jakub Pawlowicz <jakub@goalsmashers.com>",
"homepage": "https://github.com/GoalSmashers/css-minification-benchmark",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/GoalSmashers/css-minification-benchmark.git"
},
"bugs": {
"url": "https://github.com/GoalSmashers/css-minification-benchmark/issues"
},
"keywords": [
"css",
"minification",
"benchmark"
],
"scripts": {
"bench": "node ./bin/bench.js",
"bench-html": "node ./bin/bench.js --html>docs/index.html",
"check": "npm run lint",
"lint": "xo",
"test": "npm run lint && npm run bench"
},
"bin": {
"css-minification-benchmark": "bin/bench.js"
},
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"@parcel/css": "^1.0.1",
"clean-css": "^5.2.2",
"cssnano": "^5.0.15",
"cssnano-preset-advanced": "^5.1.10",
"csso": "^5.0.2",
"esbuild": "^0.14.11",
"gzip-size": "^6.0.0",
"picocolors": "^1.0.0",
"postcss": "^8.4.5",
"q": "^1.5.1",
"table": "^6.8.0",
"xo": "^0.47.0"
},
"engines": {
"node": ">=12"
},
"xo": {
"space": true,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"new-cap": "off",
"no-negated-condition": "off",
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"after"
],
"promise/prefer-await-to-then": "off",
"quote-props": [
"error",
"consistent"
],
"spaced-comment": "off",
"unicorn/prefer-module": "off"
}
}
}