-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "cbslideheader",
"version": "0.4.0",
"description": "A jQuery plugin to display or hide headerbar with a sliding motion",
"keywords": "jquery-plugin",
"main": "./dist/jquery.cbslideheader.min.js",
"style": "./dist/cbslideheader.css",
"scripts": {
"test": "gulp test",
"watch": "watchify -t babelify ./src/app.js -o ./dist/jquery.cbslideheader.js",
"build": "browserify -t babelify ./src/app.js | uglifyjs -c warnings=false > ./dist/jquery.cbslideheader.min.js"
},
"repository": {
"type": "git",
"url": "[email protected]:maechabin/jquery.cb-slideheader.js.git"
},
"author": "maechabin <[email protected]> http://mae.chab.in/",
"license": "MIT license",
"browserify-shim": {
"jquery": "global:$"
},
"browser": {
"SlideHeader": "./src/SlideHeader.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"browserify-shim": "^3.8.14",
"eslint": "^2.12.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.2.2",
"gulp-qunit": "^1.2.1",
"gulp-uglify": "^1.2.0",
"jquery": "^1.12.4",
"qunitjs": "^1.18.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.9.0"
},
"dependencies": {
"jquery": "^1.11.2"
},
"bugs": {
"url": "https://github.com/maechabin/jquery.cb-slideheader.js/issues"
},
"homepage": "https://github.com/maechabin/jquery.cb-slideheader.js"
}