-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.52 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "nest",
"version": "0.9.0",
"dependencies": {
"bootstrap-sass": "^3.3.7",
"jquery": "~3.1.0",
"photoswipe": "^4.1.1",
"tabtrap": "^1.1.4"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-preset-es2015": "^6.13.2",
"babelify": "~7.3.0",
"browser-sync": "^2.14.0",
"browserify": "^13.1.0",
"browserify-shim": "^3.8.12",
"del": "~2.2.0",
"envify": "~3.4.0",
"foldero": "~0.1.1",
"glob": "^7.0.5",
"gulp": "~3.9.0",
"gulp-changed": "~1.3.0",
"gulp-cssnano": "~2.1.0",
"gulp-data": "~1.2.1",
"gulp-debug": "^2.1.2",
"gulp-dom": "^0.9.0",
"gulp-eslint": "^3.0.1",
"gulp-htmlmin": "^2.0.0",
"gulp-if": "~2.0.0",
"gulp-imagemin": "^3.0.3",
"gulp-load-plugins": "~1.2.0",
"gulp-newer": "^1.2.0",
"gulp-notify": "~2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.1.1",
"gulp-pug": "^3.0.3",
"gulp-rename": "~1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "~1.6.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "~3.0.7",
"imagemin-pngquant": "^5.0.0",
"imagemin-svgo": "^5.1.0",
"jasmine-core": "2.4.1",
"js-yaml": "^3.6.1",
"karma": "~0.13.19",
"karma-browserify": "~4.4.2",
"karma-jasmine": "~0.3.6",
"karma-phantomjs-launcher": "~0.2.3",
"lodash": "^4.15.0",
"mime-types": "^2.1.11",
"minimist": "~1.2.0",
"phantomjs": "~1.9.19",
"pug": "^2.0.0-beta5",
"rimraf": "~2.5.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"watchify": "~3.7.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/javascripts/bootstrap.js",
"bs.affix": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/affix.js",
"bs.alert": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js",
"bs.button": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/button.js",
"bs.carousel": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/carousel.js",
"bs.collapse": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/collapse.js",
"bs.dropdown": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js",
"bs.modal": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/modal.js",
"bs.popover": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/popover.js",
"bs.scrollspy": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js",
"bs.tab": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/tab.js",
"bs.tooltip": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js",
"bs.transition": "./node_modules/bootstrap-sass/assets/javascripts/bootstrap/transition.js",
"photoswiper": "./node_modules/photoswiper/dist/photoswiper.js",
"PhotoSwipeUIDefault": "./node_modules/photoswipe/dist/photoswipe-ui-default.js"
},
"browserify-shim": {
"bootstrap": {
"exports": null,
"depends": "jquery:jQuery"
},
"bs.affix": {
"depends": "jquery:jQuery"
},
"bs.alert": {
"depends": "jquery:jQuery"
},
"bs.button": {
"depends": "jquery:jQuery"
},
"bs.carousel": {
"depends": "jquery:jQuery"
},
"bs.collapse": {
"depends": "jquery:jQuery"
},
"bs.dropdown": {
"depends": "jquery:jQuery"
},
"bs.modal": {
"depends": "jquery:jQuery"
},
"bs.popover": {
"depends": "jquery:jQuery"
},
"bs.scrollspy": {
"depends": "jquery:jQuery"
},
"bs.tab": {
"depends": "jquery:jQuery"
},
"bs.tooltip": {
"depends": "jquery:jQuery"
},
"bs.transition": {
"depends": "jquery:jQuery"
}
}
}