-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 919 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
43
44
45
{
"name": "hexo-uglify",
"version": "2.0.0",
"description": "Minify JavaScript files with Terser.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"test-cov": "c8 --reporter=lcovonly mocha test",
"eslint": "eslint ."
},
"directories": {
"lib": "./lib"
},
"files": [
"lib/",
"index.js"
],
"engines": {
"node": ">= 12"
},
"repository": "hexojs/hexo-uglify",
"keywords": [
"hexo",
"filter",
"terser"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"micromatch": "^4.0.4",
"terser": "^5.10.0"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"eslint-config-hexo": "5.0.0",
"hexo": "^7.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}