-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "yeogurt-generator-with-bootstrap",
"version": "0.0.1",
"dependencies": {
"jquery": "~2.1.3",
"normalize.css": "~3.0.1"
},
"devDependencies": {
"autoprefixer-core": "~5.2.0",
"bootstrap-sass": "^3.3.5",
"browser-sync": "~2.7.12",
"browserify": "~10.0.0",
"browserify-shim": "^3.8.10",
"del": "~1.2.0",
"envify": "~3.4.0",
"foldero": "~0.1.1",
"font-awesome": "^4.4.0",
"glob": "~5.0.10",
"gulp": "~3.9.0",
"gulp-changed": "~1.2.1",
"gulp-data": "~1.2.0",
"gulp-eslint": "~0.14.0",
"gulp-htmlmin": "~1.1.3",
"gulp-if": "~1.2.5",
"gulp-imagemin": "~2.2.1",
"gulp-jade": "~1.0.1",
"gulp-load-plugins": "~0.10.0",
"gulp-minify-css": "^1.2.1",
"gulp-newer": "~0.5.1",
"gulp-plumber": "~1.0.1",
"gulp-postcss": "~5.1.8",
"gulp-rename": "~1.2.2",
"gulp-sass": "~2.0.1",
"gulp-sourcemaps": "~1.5.2",
"gulp-uglify": "~1.2.0",
"gulp-util": "~3.0.5",
"imagemin-pngquant": "~4.0.0",
"imagemin-svgo": "~4.0.0",
"jade": "~1.11.0",
"karma": "~0.12.21",
"karma-browserify": "~4.2.1",
"karma-jasmine": "~0.2.0",
"karma-phantomjs-launcher": "~0.1.2",
"lodash": "~3.2.0",
"minimist": "~1.1.1",
"rimraf": "~2.2.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"watchify": "~3.3.0 ",
"wrench": "~1.5.8"
},
"scripts": {
"clean-deps": "rimraf node_modules"
},
"engines": {
"node": ">=0.12.0"
},
"browserify": {
"transform": [ "browserify-shim" ]
},
"browser": {
"bootstrap": "./node_modules/bootstrap-sass/assets/assets/javascripts/bootstrap.min.js"
},
"browserify-shim": {
"bootstrap": {
"depends": "jquery:$"
}
},
"//": "CUSTOM CONFIGURATION",
"config": {
"//": "Entry files",
"host": "127.0.0.1",
"port": "3000",
"baseUrl": "./",
"directories": {
"source": "src",
"destination": "build",
"temporary": "tmp",
"//": "Directories relative to `source` directory",
"modules": "_modules",
"layouts": "_layouts",
"images": "_images",
"styles": "_styles",
"scripts": "_scripts",
"data": "_data"
},
"entries": {
"js": "main**.js",
"css": "main**.{sass,scss}"
}
}
}