You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Vestride_Shuffle/packages/shuffle/package.json

54 lines
1.2 KiB
JSON

{
"name": "shufflejs",
"version": "6.1.0",
"description": "Categorize, sort, and filter a responsive grid of items",
"keywords": [
"gallery",
"shuffle",
"layout",
"masonry",
"filter",
"sort",
"responsive",
"grid",
"mobile",
"tiles"
],
"main": "./dist/shuffle.js",
"module": "./dist/shuffle.esm.js",
"source": "./src/shuffle.js",
"exports": {
"require": "./dist/shuffle.js",
"default": "./dist/shuffle.esm.js"
},
"types": "./index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup --config ./rollup.config.js",
"test-all": "npm run lint && npm test && npm run type-check",
"test": "jest",
"lint": "eslint src",
"type-check": "tsc --project ./test/types",
"watch": "rollup --config ./rollup.config.js --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/Vestride/Shuffle.git"
},
"author": "Glen Cheney <cheney.glen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vestride/Shuffle/issues"
},
"homepage": "https://github.com/Vestride/Shuffle",
"files": [
"dist",
"src",
"index.d.ts"
],
"dependencies": {
"array-parallel": "^0.1.3",
"tiny-emitter": "^2.1.0"
}
}