1
0
mirror of synced 2024-11-21 20:46:07 +03:00
select2/package.json
Kevin Brown 85593de1fa Fixed bug when destroying Select2
When destroying Select2, an error could be raised while destroying
the selection container. This was because the destroy handler was
relying on the container id being present.

The old functionality has been restored where Select2 will destroy
itself when it is initialized again.
2014-11-25 13:39:46 -05:00

50 lines
1.2 KiB
JSON

{
"name": "Select2",
"description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.",
"homepage": "http://ivaynberg.github.io/select2",
"author": "Igor Vaynberg",
"repository": {
"type": "git",
"url": "git://github.com/ivaynberg/select2.git"
},
"main": "dist/js/select2.js",
"version": "3.4.8",
"jspm": {
"main": "select2",
"files": [
"select2.js",
"select2.png",
"select2.css",
"select2-spinner.gif"
],
"shim": {
"select2": {
"imports": [
"jquery",
"./select2.css!"
],
"exports": "$"
}
},
"buildConfig": {
"uglify": true
}
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "~0.3.3",
"grunt-contrib-qunit": "~0.4.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.0",
"grunt-gh-pages": "^0.9.1",
"grunt-jekyll": "^0.4.2",
"grunt-sass": "~0.12.0",
"node-sass": "~0.8.6"
}
}