-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 997 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 997 Bytes
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": "@ttungbmt/minify",
"version": "0.0.6",
"description": "Minify",
"license": "MIT",
"keywords": [
"minify",
"html",
"css",
"js"
],
"author": "Truong Thanh Tung <ttungbmt@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/novaworld/js-minify.git"
},
"main": "dist/minify.cjs.js",
"module": "dist/minify.es.js",
"unpkg": "dist/minify.umd.js",
"scripts": {
"clean": "rimraf dist/*",
"dev": "rollup -c -w",
"build": "yarn clean && rollup -c --environment NODE_ENV:production",
"push": "nodemon -x yalc push"
},
"dependencies": {
"camel-case": "^3.0.0",
"clean-css": "^4.2.1",
"commander": "^2.20.0",
"he": "^1.2.0",
"html-minifier": "^4.0.0",
"param-case": "^2.1.1",
"relateurl": "^0.2.7",
"terser": "^4.1.2"
},
"devDependencies": {
"@ttungbmt/module-config": "^0.0.16"
},
"files": [
"dist",
"src",
"rollup.config.js"
],
"sideEffects": false
}