-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "one-html",
"version": "1.0.0",
"description": "one-html",
"config": {
"css_source": "src/stylus/output",
"css_output_style": "--compress",
"css_output": "dist/css"
},
"scripts": {
"css-lint": "npx stylint ${npm_package_config_css_source}/../ --config .stylintrc",
"css-compile": "rm -rfv ./dist/css && mkdir -p dist/css && npx stylus $npm_package_config_css_source $npm_package_config_css_output_style --out $npm_package_config_css_output --use ./node_modules/nib/lib/nib",
"css": "npm run css-lint && npm run css-compile",
"css-watch": "npm run css-compile -- --watch",
"watch": "npx webpack --watch & npm run css-watch",
"build": "npx webpack && npm run css && npx html-inline ./dist/index.html -o ./dist/index-compiled.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcker/one-html.git"
},
"keywords": [
"generator",
"static",
"loqua",
"webpack"
],
"author": "marcker <marckfree@gmail.com> (http://marcker.herokuapp.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcker/one-html/issues"
},
"homepage": "https://github.com/marcker/one-html#readme",
"devDependencies": {
"html-inline": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"nib": "^1.1.2",
"stylint": "^1.5.9",
"stylus": "^0.54.5",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4"
}
}