-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 967 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 967 Bytes
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
{
"name": "jquery-simplyscroll",
"version": "2.1.1",
"description": "A jQuery plugin for scrolling a set of images/elements",
"main": "src/jquery.simplyscroll.js",
"style": "src/jquery.simplyscroll.css",
"repository": "https://github.com/logicbox/jquery-simplyscroll.git",
"author": "Will Kelly <[email protected]>",
"license": "MIT",
"private": false,
"homepage": "http://logicbox.net/jquery/simply-scroll",
"contributors": [
"paloaltowil (https://github.com/paloaltowil)",
"Zevero (https://github.com/zevero)",
"bre7 (https://github.com/bre7)"
],
"dependencies": {
"jquery": "^3.3.1"
},
"devDependencies": {
"browserify": "^16.2.2",
"budo": "^11.3.2",
"uglify-js": "^3.4.4"
},
"scripts": {
"start": "budo index.js:bundle.js --open --live",
"build": "uglifyjs ./jquery.simplyscroll.js --compress --mangle reserved=['$','require','exports'] --comments --output ./jquery.simplyscroll.min.js"
}
}