forked from aklcss/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "aklcss",
"version": "0.0.1",
"description": "Website for Auckland CSS",
"main": "index.js",
"scripts": {
"http": "cd dist && python -m SimpleHTTPServer",
"build:dir": "mkdir -p dist/css",
"build:css": "rework-npm src/css/main.css | cleancss -o dist/css/main.css",
"build:copy": "cp src/* dist/ 2>/dev/null || :",
"build": "npm run build:dir && npm run build:css && npm run build:copy",
"publish": "cd dist && rm -rf .git && git init && git add . && git commit -m 'deploy' && git push --force --quiet '[email protected]:aklcss/www.git' master:gh-pages"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aklcss/www.git"
},
"keywords": [
"website",
"auckland",
"css"
],
"author": "Navishkar Rao",
"license": "ISC",
"bugs": {
"url": "https://github.com/aklcss/www/issues"
},
"homepage": "https://github.com/aklcss/www#readme",
"devDependencies": {
"clean-css": "^3.4.21",
"rework-npm": "^1.0.0",
"rework-npm-cli": "^0.1.1"
},
"dependencies": {
"tachyons": "^4.5.5"
}
}