-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 794 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 794 Bytes
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
{
"name": "css-george-website",
"version": "1.0.0",
"description": "Website for the CSS-George project",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/css-george/example-site"
},
"scripts": {
"build": "npm run build:html && npm run build:js && npm run build:less",
"build:html": "cp src/index.html www/index.html",
"build:js": "cp node_modules/css-george/dist/george.js www/george.js",
"build:less": "lessc src/less/main.less www/style.css",
"serve": "sirv www",
"start": "npm run build && npm run serve"
},
"author": "Darryl Pogue <darryl@dpogue.ca>",
"license": "MIT",
"dependencies": {
"css-george": "^1.0.0",
"less": "^4.1.1",
"less-plugin-css-george": "^2.1.0",
"sirv-cli": "^1.0.11"
}
}