-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 847 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
{
"name": "@voliware/node-minify-transform",
"version": "0.1.1",
"description": "Minify JS, CSS, and HTML in a stream using a transform and node-minify",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Voliware/node-minify-transform.git"
},
"keywords": [
"minify",
"stream",
"transform"
],
"author": "Anthony Agostino",
"license": "MIT",
"bugs": {
"url": "https://github.com/Voliware/node-minify-transform/issues"
},
"homepage": "https://github.com/Voliware/node-minify-transform#readme",
"dependencies": {
"@node-minify/clean-css": "^5.2.0",
"@node-minify/core": "^5.2.0",
"@node-minify/html-minifier": "^5.2.0",
"@node-minify/uglify-es": "^5.2.0"
},
"devDependencies": {
"mocha": "^6.2.2"
}
}