forked from mmonkey/fireSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.44 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
{
"name": "fireSlider",
"version": "v1.6.4",
"description": "A responsive javascript slider and carousel plugin, with breakpoints",
"repository": {
"type": "git",
"url": "[email protected]/mmonkey/fireSlider.git"
},
"scripts": {
"build": "npm-run-all build:*",
"build:css": "sass --style expanded --no-source-map build/scss/stylesheet.scss build/css/stylesheet.css",
"build:js": "rollup --config rollup.config.js && browserify build/js/fireSlider.velocity.js -o dist/jquery.fireSlider.velocity.js",
"dev": "npm-run-all --parallel serve watch",
"prebuild": "rimraf dist",
"preserve": "npm run build",
"serve": "browser-sync start --config bs-config.js",
"watch": "npm-run-all --parallel watch:*",
"watch:css": "onchange 'build/scss/**/*.scss' -- npm run build:css",
"watch:js": "onchange 'build/js/**/*.js' -- npm run build:js"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"browserify": "^16.2.3",
"jquery": "^3.5.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"rimraf": "^2.6.3",
"rollup": "^1.11.3",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"sass": "^1.26.5",
"velocity-animate": "^1.5.2"
},
"author": "CJ O'Hara and Tyler Fowle",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmonkey/fireSlider/issues"
},
"homepage": "https://mmonkey.github.io/fireSlider"
}