-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "Reeddit",
"version": "2.0.0",
"description": "Minimal, elastic Reddit web-app reader client",
"homepage": "http://reedditapp.com/about/",
"repository": {
"type": "git",
"url": "https://github.com/berbaquero/reeddit.git"
},
"author": "berbaquero",
"license": "MIT",
"bugs": {
"url": "https://github.com/berbaquero/reeddit/issues",
"email": "[email protected]"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.3.1",
"gulp-babel": "^5.3.0",
"gulp-concat-util": "^0.5.2",
"gulp-group-css-media-queries": "^1.0.0",
"gulp-jade": "^1.0.0",
"gulp-jshint": "^1.12.0",
"gulp-minify-css": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^1.5.4",
"gulp-watch": "^4.2.4",
"node-sass": "^7.0.0"
},
"scripts": {
"start": "gulp dev",
"prebuild": "rm -rf site",
"build": "gulp",
"postbuild": "cp index.html site/index.html && cp -a img/. site/img && cp -a about/. site/about && cp -a fonts/. site/dist/fonts && cp libs.js site/dist",
"deploy": "git push",
"deploy-beta": "surge . reeddit.surge.sh"
},
"dependencies": {}
}