-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 997 Bytes
/
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
41
42
43
44
45
46
{
"name": "Markdown_CodeHorror",
"version": "0.0.1",
"description": "A tutorial for the popular Markdown language.",
"author": "EmiPhil",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/EmiPhil/Markdown"
},
"bugs": {
"url": "https://github.com/EmiPhil/Markdown/issues"
},
"keywords": [
"markdown",
"code",
"horror",
"tutorial"
],
"scripts": {
"start": "gulp"
},
"devDependencies": {
"gulp": "3.8.11",
"gulp-sass": "~1.3.3",
"gulp-concat": "2.4.3",
"gulp-uglify": "1.0.2",
"gulp-minify-css": "0.3.11",
"gulp-jshint": "1.9.0",
"browser-sync": "1.8.2",
"del": "1.1.1",
"jshint-stylish": "~1.0.1",
"gulp-run": "~1.6.7"
},
"paths": {
"sass": "./source/**/*.scss",
"js": "./source/**/*.js",
"html": "./public/*.html"
},
"dest": {
"style": "style.css",
"app": "bundle.js",
"distcss": "public/assets/css",
"distjs": "public/assets/js"
}
}