forked from ancoopa/static-pages-bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "static-pages-bundler",
"version": "1.0.25",
"description": "This is a simple library that creates a bundle of a simple web page that uses classic `<link ...>` and `<script ...>` way to connect a bunch of CSS and JS files to the HTML template.",
"keywords": [
"bundle",
"uglify",
"compress",
"static",
"static page",
"static site",
"frameworkless"
],
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node index.js",
"prepublish": "npm test"
},
"author": "Andrii Kuprii <[email protected]> (https://github.com/ancoopa/static-pages-bundler)",
"license": "ISC",
"dependencies": {
"html-minifier": "^4.0.0",
"uglify-es": "github:mishoo/UglifyJS2#harmony",
"uglifycss": "0.0.29"
},
"devDependencies": {
"argparse": "^2.0.1",
"jest": "^24.7.1",
"ncp": "^2.0.0"
},
"bin": {
"spb": "./index.js",
"static-pages-bundler": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ancoopa/static-pages-bundler.git"
}
}