-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "www",
"version": "1.33.7",
"description": "require('lx') webpage",
"scripts": {
"build-clean": "rm -r build",
"build-assets": "cp -r src/assets build",
"build-views": "pug src/views -o build --pretty",
"build-js": "exit 0",
"build-css": "lessc --clean-css src/styles/page.less build/css/page.min.css",
"build": "npm run build-assets && npm run build-views && npm run build-js && npm run build-css",
"release": "npm run build && mv build release",
"serve": "static build",
"mon": "nodemon --exec 'npm run build && npm run serve' --watch src -e js,pug,less",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/require-lx/www.git"
},
"keywords": [
"Node.js",
"JavaScript",
"Lisbon"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/require-lx/www/issues"
},
"homepage": "https://github.com/require-lx/www#readme",
"dependencies": {},
"devDependencies": {
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"node-static": "^0.7.8",
"nodemon": "^1.10.2",
"pug": "^2.0.0-beta6",
"pug-cli": "^1.0.0-alpha6"
}
}