forked from maaaaark/bcSwipe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "bcswipe",
"version": "2.0.4",
"description": "Super lightweight jQuery plugin to enable swipe gestures for Bootstrap 3 carousels on iOS and Android.",
"main": "lib/main.js",
"browser": "lib/main.js",
"files": [
"/lib/",
"/dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p dist; browserify lib/main.js | uglifyjs --compress --mangle --comments > dist/jquery.bcSwipe.min.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/briggySmalls/bcSwipe.git"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"bootstrap",
"mobile"
],
"author": "Sam Briggs",
"license": "MIT",
"bugs": {
"url": "https://github.com/briggySmalls/bcSwipe/issues"
},
"homepage": "https://github.com/briggySmalls/bcSwipe#readme",
"peerDependencies": {
"jquery": "^3.3.1"
},
"devDependencies": {
"browserify": "^16.2.3",
"uglify-js": "^3.4.9"
},
"dependencies": {
"detect-passive-events": "^1.0.4"
}
}