-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
{
"name": "@damplus/indexed-cloudinary",
"version": "3.3.1",
"description": "Functions for adding carousel/wallpaper images to page from Cloudinary images indexed in ElasticSearch.",
"author": "DAM Plus",
"engines": {
"node": "5.6.0"
},
"dependencies": {
"babel-polyfill": "6.13.0",
"cloudinary-core": "^2.0.8",
"isomorphic-fetch": "^2.2.1",
"jquery-bar-rating": "^1.1.4",
"lightslider": "^1.1.5",
"lodash": "^4.17.4"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-cli": "^6.6.5",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"class-bind": "^0.2.0",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.0.3",
"gulp-cli": "^1.1.0",
"gulp-jshint": "^1.11.2",
"gulp-postcss": "^6.0.1",
"gulp-sass": "^2.0.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"jquery": "^2.2.4",
"jsdom": "^9.2.0",
"mocha": "^2.5.2",
"postcss-reporter": "^1.2.1",
"postcss-scss": "^0.1.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"stylelint": "^1.2.1",
"stylelint-config-bright": "^1.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"build": "gulp build",
"build-dev": "gulp build-dev",
"start": "webpack-dev-server --config demo/webpack.config.js --content-base demo",
"test": "mocha --compilers js:babel-core/register src/js/test/*.js",
"preversion": "npm run build && git add dist",
"postversion": "git push --follow-tags origin master"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"lightslider": "./node_modules/lightslider/dist/js/lightslider.min.js",
"jquery-bar-rating": "./node_modules/jquery-bar-rating/dist/jquery.barrating.min.js"
},
"browserify-shim": {
"jquery": "global:jQuery"
}
}