-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 879 Bytes
/
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
{
"name": "hexo-clean-css",
"version": "2.0.0",
"description": "Minify CSS files with clean-css.",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"files": [
"lib/"
],
"directories": {
"lib": "./lib"
},
"repository": "hexojs/hexo-clean-css",
"keywords": [
"hexo",
"filter",
"uglify"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (https://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"clean-css": "^5.1.2",
"micromatch": "^4.0.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.9.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=14"
}
}