diff options
author | Michael Krotscheck <krotscheck@gmail.com> | 2015-07-15 18:29:20 -0700 |
---|---|---|
committer | Michael Krotscheck <krotscheck@gmail.com> | 2015-07-29 21:52:37 -0700 |
commit | 178f5ad1358b7c3e2275ff4340135ea4f8a9a629 (patch) | |
tree | 2e91bda8222de04b3529be42d516ebb2950a7611 /package.json | |
parent | 92bca6599bb975e7c695a99e0c053ff8050b71f0 (diff) |
Added presentation framework.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..65441f5 --- /dev/null +++ b/package.json | |||
@@ -0,0 +1,39 @@ | |||
1 | { | ||
2 | "name": "presentations", | ||
3 | "version": "1.0.0", | ||
4 | "description": "My convention presentations.", | ||
5 | "main": "index.html", | ||
6 | "private": true, | ||
7 | "scripts": { | ||
8 | "postinstall": "bower install", | ||
9 | "start": "gulp serve", | ||
10 | "prestart": "gulp package", | ||
11 | "prepublish": "gulp package", | ||
12 | "new": "gulp new" | ||
13 | }, | ||
14 | "author": { | ||
15 | "name": "Michael Krotscheck", | ||
16 | "email": "krotscheck@gmail.com", | ||
17 | "url": "http://www.krotscheck.net/" | ||
18 | }, | ||
19 | "license": "Apache-2.0", | ||
20 | "dependencies": {}, | ||
21 | "devDependencies": { | ||
22 | "bower": "^1.4.1", | ||
23 | "cheerio": "^0.19.0", | ||
24 | "gulp": "^3.9.0", | ||
25 | "gulp-compile-handlebars": "^0.5.0", | ||
26 | "gulp-filter": "^3.0.0", | ||
27 | "gulp-git": "^1.2.4", | ||
28 | "gulp-ignore": "^1.2.1", | ||
29 | "gulp-less": "^3.0.3", | ||
30 | "gulp-prompt": "^0.1.2", | ||
31 | "gulp-rename": "^1.2.2", | ||
32 | "gulp-util": "^3.0.6", | ||
33 | "gulp-webserver": "^0.9.1", | ||
34 | "main-bower-files": "^2.9.0", | ||
35 | "rimraf": "^2.4.2", | ||
36 | "streamqueue": "^1.1.0" | ||
37 | }, | ||
38 | "repository": "git@github.com:krotscheck/presentations.git" | ||
39 | } | ||