forked from mozilla/makerstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "makerstrap",
"version": "0.2.7",
"description": "Boostrap theme for Webmaker",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/makerstrap.git"
},
"main": "less/makerstrap.less",
"scripts": {
"start": "npm-run-all --parallel server watch:*",
"less-development": "autoless --source-map --no-watch demo/less/ demo/compiled/",
"watch:demo": "autoless --source-map demo/less/ && npm run less-development",
"watch:base": "autoless --source-map less/ && npm run less-development ",
"build": "npm run less-development",
"build:deploy": "npm run build:copy && build:version",
"build:copy": "cpx \"**/*\" deploy/latest/",
"build:version": "cpx \"dist/**/*\" deploy/pkg-version/",
"server": "node demo/server.js",
"postinstall": "bower install"
},
"author": "@k88hudson",
"devDependencies": {
"autoless": "^0.1.7",
"bower": "1.3.8",
"cpx": "^1.2.1",
"express": "3.4.8",
"npm-run-all": "^1.2.11"
},
"engines": {
"node": ">=0.10"
}
}