-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 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
{
"name": "leveljs.org",
"version": "1.0.0",
"description": "This is the source code for [leveljs.org](leveljs.org).",
"private": true,
"author": "hij1nx",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "run-p build-assets watch-styles watch-pug server",
"watch-styles": "stylus -w ./assets/styl/ -o ./dist/css/",
"watch-pug": "pug --watch ./assets/pug/index.pug --out ./dist/",
"build": "npm run build-styles && npm run build-pug && npm run build-assets",
"build-styles": "stylus ./assets/styl/ -o ./dist/css/",
"build-pug": "pug ./assets/pug/index.pug --out ./dist/",
"build-assets": "cpy \"assets/static/css/*.css\" dist/css && cpy \"assets/static/img/*.{svg,png}\" dist/img",
"server": "node server.js 8080",
"hallmark": "hallmark --fix",
"test": "hallmark"
},
"devDependencies": {
"cpy-cli": "^4.1.0",
"hallmark": "^4.0.0",
"npm-run-all": "^4.1.3",
"pug-cli": "^1.0.0-alpha6",
"send": "^0.18.0",
"stylus": "^0.59.0"
},
"repository": "Level/leveljs.org",
"homepage": "https://github.com/Level/leveljs.org",
"keywords": [
"level"
]
}