forked from unacms/una
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/unacms/una
- Loading branch information
Showing
29 changed files
with
1,762 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "datatables", | ||
"version": "1.10.20", | ||
"title": "DataTables", | ||
"main": "media/js/jquery.dataTables", | ||
"files": [ | ||
"media/js/jquery.dataTables.js", | ||
"media/js/jquery.dataTables.min.js", | ||
"media/css/jquery.dataTables.css", | ||
"media/css/jquery.dataTables.min.css", | ||
"media/images" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"jquery": ">=1.7" | ||
}, | ||
"author": { | ||
"name": "Allan Jardine", | ||
"url": "http://sprymedia.co.uk" | ||
}, | ||
"description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.", | ||
"keywords": [ | ||
"DataTables", | ||
"DataTable", | ||
"table", | ||
"grid", | ||
"filter", | ||
"sort", | ||
"page", | ||
"internationalisable", | ||
"jquery-plugin" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DataTables/DataTables.git" | ||
}, | ||
"homepage": "http://datatables.net", | ||
|
||
"jspm": { | ||
"dependencies": { | ||
"css": "^0.1.5", | ||
"jquery": "*" | ||
}, | ||
"registry": "jspm", | ||
"shim": { | ||
"media/js/jquery.dataTables": { | ||
"deps": ["jquery", "../css/jquery.dataTables.css!"], | ||
"exports": "$" | ||
} | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
modules/boonex/analytics/plugins/daterangepicker/package.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Package.describe({ | ||
name: 'dangrossman:bootstrap-daterangepicker', | ||
version: '3.0.5', | ||
summary: 'Date range picker component', | ||
git: 'https://github.com/dangrossman/daterangepicker', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('[email protected]'); | ||
|
||
api.use('momentjs:[email protected]', ["client"]); | ||
api.use('[email protected]', ["client"]); | ||
|
||
api.addFiles('daterangepicker.js', ["client"]); | ||
api.addFiles('daterangepicker.css', ["client"]); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"name": "at.js", | ||
"main": "dist/js/jquery.atwho.js", | ||
"author": { | ||
"name": "chord.luo", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "http://ichord.github.com/At.js", | ||
"license": "MIT", | ||
"version": "1.5.4", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ichord/At.js" | ||
}, | ||
"engines": { | ||
"node": ">= 0.6.0" | ||
}, | ||
"scripts": { | ||
"test": "gulp test" | ||
}, | ||
"peerDependencies": { | ||
"jquery": ">=1.7.0 <4.0.0" | ||
}, | ||
"devDependencies": { | ||
"gulp": "^3.9.0", | ||
"gulp-bump": "^1.0.0", | ||
"gulp-coffee": "^2.3.1", | ||
"gulp-concat": "^2.6.0", | ||
"gulp-cssmin": "^0.1.7", | ||
"gulp-debug": "^2.1.2", | ||
"gulp-header": "^1.7.1", | ||
"gulp-jasmine": "^2.2.1", | ||
"gulp-jasmine-phantom": "^2.0.1", | ||
"gulp-rename": "^1.2.2", | ||
"gulp-uglify": "^1.5.1", | ||
"gulp-umd": "^0.2.0", | ||
"gulp-util": "^3.0.7", | ||
"jasmine-ajax": "^3.2.0", | ||
"jasmine-jquery": "^2.1.1", | ||
"phantomjs": "^1.9.19" | ||
}, | ||
"spm": { | ||
"main": "dist/js/jquery.atwho.js", | ||
"dependencies": { | ||
"jquery": ">=1.7.2", | ||
"caret.js": "~0.3.1" | ||
}, | ||
"ignore": [ | ||
"examples", | ||
"spec", | ||
"src" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "codemirror", | ||
"version": "5.52.0", | ||
"main": "lib/codemirror.js", | ||
"style": "lib/codemirror.css", | ||
"author": { | ||
"name": "Marijn Haverbeke", | ||
"email": "[email protected]", | ||
"url": "http://marijnhaverbeke.nl" | ||
}, | ||
"description": "Full-featured in-browser code editor", | ||
"license": "MIT", | ||
"directories": { | ||
"lib": "./lib" | ||
}, | ||
"scripts": { | ||
"build": "rollup -c", | ||
"watch": "rollup -w -c", | ||
"prepare": "npm run-script build", | ||
"test": "node ./test/run.js", | ||
"lint": "bin/lint" | ||
}, | ||
"devDependencies": { | ||
"blint": "^1.1.0", | ||
"node-static": "0.7.11", | ||
"puppeteer": "^1.20.0", | ||
"rollup": "^1.26.3", | ||
"rollup-plugin-buble": "^0.19.8" | ||
}, | ||
"bugs": "http://github.com/codemirror/CodeMirror/issues", | ||
"keywords": [ | ||
"JavaScript", | ||
"CodeMirror", | ||
"Editor" | ||
], | ||
"homepage": "https://codemirror.net", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/codemirror/CodeMirror.git" | ||
}, | ||
"jspm": { | ||
"directories": {}, | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "combodate", | ||
"version": "1.0.7", | ||
"description": "Dropdown date and time picker", | ||
"author": "https://github.com/vitalets", | ||
"license": "MIT", | ||
"homepage": "https://github.com/vitalets/combodate", | ||
"main": "combodate.js", | ||
"ignore": [ | ||
"**/.*", | ||
"moment*.js", | ||
"test" | ||
], | ||
"dependencies": { | ||
"moment": "<=2.5.*" | ||
}, | ||
"devDependencies": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"name": "croppie", | ||
"version": "2.6.5", | ||
"description": "A simple javascript image cropper", | ||
"main": "croppie.js", | ||
"devDependencies": { | ||
"gh-pages": "^0.11.0", | ||
"mocha": "2.4.5", | ||
"uglify-js": "3.3.15" | ||
}, | ||
"scripts": { | ||
"test": "mocha test/unit", | ||
"deploy": "node deploy.js", | ||
"uglify": "uglifyjs croppie.js -c -m -r '$,require,exports' -o croppie.min.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Foliotek/Croppie.git" | ||
}, | ||
"keywords": [ | ||
"crop", | ||
"cropper", | ||
"image", | ||
"cropping" | ||
], | ||
"authors": [ | ||
"Dustin Smith <[email protected]>", | ||
"Ethan Calvert <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/Foliotek/Croppie/issues" | ||
}, | ||
"homepage": "http://foliotek.github.io/Croppie", | ||
"files": [ | ||
"croppie.css", | ||
"croppie.js", | ||
"croppie.min.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "fancybox", | ||
"original-version": "2.1.5", | ||
"version": "3.0.1", | ||
"description": "fancyBox is a tool that offers a nice and elegant way to add zooming functionality for images, html content and multi-media on your webpages. It is built on the top of the popular JavaScript framework jQuery and is both easy to implement and a snap to customize.", | ||
"main": "dist/js/jquery.fancybox.cjs.js", | ||
"scripts": { | ||
"test": "./node_modules/phantomjs/lib/phantom/bin/phantomjs ./test.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/olsonpm/fancybox.git" | ||
}, | ||
"keywords": [ | ||
"fancybox", | ||
"fancy", | ||
"box", | ||
"lightbox" | ||
], | ||
"author": "fancyapps (https://github.com/fancyapps)", | ||
"license": "CC BY-NC 3.0 (http://creativecommons.org/licenses/by-nc/3.0/)", | ||
"bugs": { | ||
"url": "https://github.com/olsonpm/fancybox/issues" | ||
}, | ||
"homepage": "https://github.com/olsonpm/fancybox", | ||
"devDependencies": { | ||
"chai": "^1.10.0", | ||
"jquery": "^2.1.3", | ||
"node-sass": "^2.0.0-beta", | ||
"phantomjs": "^1.9.13" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"name": "filepond", | ||
"version": "4.30.3", | ||
"description": "FilePond, Where files go to stretch their bits.", | ||
"license": "MIT", | ||
"author": { | ||
"name": "PQINA", | ||
"url": "https://pqina.nl/" | ||
}, | ||
"homepage": "https://pqina.nl/filepond/", | ||
"repository": "pqina/filepond", | ||
"main": "dist/filepond.js", | ||
"browser": "dist/filepond.js", | ||
"module": "dist/filepond.esm.js", | ||
"keywords": [ | ||
"javascript", | ||
"file", | ||
"upload", | ||
"drag", | ||
"drop", | ||
"browse", | ||
"paste", | ||
"image", | ||
"preview" | ||
], | ||
"browserslist": [ | ||
"last 1 version and not Explorer 10", | ||
"Explorer 11", | ||
"iOS >= 9", | ||
"Android >= 4.4" | ||
], | ||
"files": [ | ||
"dist", | ||
"locale", | ||
"types/*.d.ts" | ||
], | ||
"types": "types/index.d.ts", | ||
"scripts": { | ||
"test": "npx jest", | ||
"dev": "npm run start", | ||
"start": "npx rollup -c -w", | ||
"build": "npm run scripts | npm run styles", | ||
"scripts": "npx rollup -c", | ||
"styles": "npm run styles:pretty && npm run styles:nano", | ||
"styles:pretty": "npx postcss src/css/styles.css --no-map --use precss --use autoprefixer | npx prettier --single-quote --parser css | node banner-cli.js FilePond > dist/filepond.css", | ||
"styles:nano": "npx postcss src/css/styles.css --no-map --use precss --use autoprefixer --use cssnano | node banner-cli.js FilePond > dist/filepond.min.css", | ||
"dtslint": "dtslint types" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.5.5", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.5.5", | ||
"@babel/plugin-transform-template-literals": "^7.4.4", | ||
"@babel/preset-env": "^7.5.5", | ||
"autoprefixer": "^9.6.1", | ||
"babel-jest": "^24.8.0", | ||
"cssnano": "^4.1.10", | ||
"dtslint": "^3.6.12", | ||
"jest": "^24.8.0", | ||
"postcss-cli": "^6.1.3", | ||
"precss": "^4.0.0", | ||
"prettier": "^1.18.2", | ||
"rollup": "^1.17.0", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-commonjs": "^9.3.4", | ||
"rollup-plugin-license": "^0.8.1", | ||
"rollup-plugin-node-resolve": "^4.2.4", | ||
"rollup-plugin-prettier": "^0.6.0", | ||
"rollup-plugin-terser": "^4.0.4", | ||
"typescript": "^3.9.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"name": "flickity", | ||
"version": "2.2.1", | ||
"description": "Touch, responsive, flickable carousels", | ||
"main": "js/index.js", | ||
"style": "css/flickity.css", | ||
"dependencies": { | ||
"desandro-matches-selector": "^2.0.0", | ||
"ev-emitter": "^1.1.1", | ||
"fizzy-ui-utils": "^2.0.7", | ||
"get-size": "^2.0.3", | ||
"unidragger": "^2.3.0", | ||
"unipointer": "^2.3.0" | ||
}, | ||
"devDependencies": { | ||
"chalk": "^2.4.2", | ||
"flickity-as-nav-for": "^2.0.0", | ||
"flickity-imagesloaded": "^2.0.0", | ||
"gulp": "^4.0.2", | ||
"gulp-clean-css": "^4.2.0", | ||
"gulp-jshint": "^2.1.0", | ||
"gulp-json-lint": "^0.1.0", | ||
"gulp-rename": "^1.4.0", | ||
"gulp-replace": "^1.0.0", | ||
"gulp-requirejs-optimize": "github:metafizzy/gulp-requirejs-optimize", | ||
"gulp-uglify": "^3.0.2", | ||
"gulp-util": "^3.0.8", | ||
"jquery-bridget": "^2.0.0", | ||
"jshint": "^2.10.2", | ||
"merge2": "^1.2.3", | ||
"minimist": "^1.2.0" | ||
}, | ||
"scripts": { | ||
"test": "echo \"View test/ in browser\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/metafizzy/flickity.git" | ||
}, | ||
"keywords": [ | ||
"touch", | ||
"responsive", | ||
"flick", | ||
"slider", | ||
"carousel", | ||
"gallery", | ||
"DOM", | ||
"browser" | ||
], | ||
"author": "Metafizzy", | ||
"license": "GPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/metafizzy/flickity/issues" | ||
}, | ||
"homepage": "https://flickity.metafizzy.co", | ||
"directories": { | ||
"test": "test" | ||
} | ||
} |
Oops, something went wrong.