-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "mini-site-generator",
"version": "1.0.10",
"description": "A marvelously minimal static site generator.",
"keywords": [
"static",
"file",
"site",
"website",
"generator",
"minimal",
"simple",
"javascript",
"easy"
],
"author": "Iain J McCallum",
"main": "build.js",
"repository": {
"type": "git",
"url": "https://github.com/ijmccallum/Mini-Site-Generator"
},
"scripts": {
"start": "run-p start:server start:watch",
"start:server": "http-server ./docs/",
"start:watch": "node bin/watch.js",
"build:markup": "node build.js -io ./docsrc/ ./docs/",
"build:css": "postcss --use postcss-import postcss-custom-media autoprefixer cssnano -o docs/main.css docsrc/css/main.css --no-map"
},
"bin": {
"msg": "./bin/msg"
},
"dependencies": {
"html-minifier": "^3.5.8"
},
"devDependencies": {
"cssnano": "^3.10.0",
"http-server": "^0.11.1",
"npm-run-all": "^4.1.2",
"postcss": "^6.0.18",
"postcss-cli": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-custom-media": "^6.0.0",
"postcss-import": "^11.1.0"
}
}