-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "automin",
"version": "2.0.3",
"description": "\"Create a minified mirror version of your js, css, html, json files\"",
"main": "/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm install && tsc --watch",
"build": "npm install && tsc --project tsconfig-build.json"
},
"keywords": [
"web-minifier",
"css-minifier",
"html-minifier",
"js-minifier",
"json-minifier",
"cli-minifier",
"minified-mirror-code"
],
"repository": {
"type": "git",
"url": "https://github.com/jxmked/Auto-Min.git"
},
"author": "jxmked",
"license": "MIT",
"dependencies": {
"clean-css": "^5.3.1",
"commander": "^9.4.0",
"env-res": "^1.0.4",
"html-minifier": "^4.0.0",
"jsonminify": "^0.4.2",
"mkdirp": "^1.0.4",
"uglify-js": "^3.17.0"
},
"bin": {
"webminifier": "./bin/index.js",
"automin": "./bin/index.js"
},
"devDependencies": {
"@types/clean-css": "^4.2.5",
"@types/html-minifier": "^4.0.2",
"@types/jsonminify": "^0.4.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.7.14",
"@types/uglify-js": "^3.17.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}