-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.45 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.45 KB
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": "pug-stylus-es5-boilerplate",
"version": "0.0.0",
"description": "boilerplate project with pug (jade), stylus and es5 js",
"main": " ",
"scripts": {
"clean": "rm -rf build/",
"css": "stylus src/styles/main.styl --out ./build/styles/ --use autoprefixer-stylus --sourcemap-inline --inline --include-css",
"html": "pug src/templates/index.pug --out ./build/ --pretty",
"images": "cp -r src/images/ build/images/",
"js": "browserify src/scripts/index.js -t babelify > build/scripts/bundle.js",
"mkdirs": "mkdir build build/images build/scripts build/styles",
"serve": "../../bin/light-server --config .lightrc",
"start": "npm run clean && npm run mkdirs && npm run html && npm run images && npm run css && npm run js && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scarysize/pug-stylus-es5-boilerplate.git"
},
"keywords": [
"pug",
"jade",
"es5",
"boilerplate",
"stylus"
],
"author": "Franz Neubert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Scarysize/pug-stylus-es5-boilerplate/issues"
},
"homepage": "https://github.com/Scarysize/pug-stylus-es5-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"autoprefixer-stylus": "^1.0.0",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"pug": "^3.0.0",
"pug-cli": "^1.0.0-alpha6",
"stylus": "^0.54.8"
}
}