shuffle-arr
Version:
Randomize the order of the elements in array or array-like object.
49 lines (48 loc) • 1.19 kB
JSON
{
"name": "shuffle-arr",
"version": "1.0.1",
"description": "Randomize the order of the elements in array or array-like object.",
"main": "index.js",
"scripts": {
"lint": "jshint index.js",
"pretest": "npm run lint",
"test": "mocha -R spec",
"test:cov": "rm -rf ./test/coverage && istanbul cover _mocha --dir ./test/coverage -- -R spec",
"test:rpt": "npm run test:cov && coveralls < ./test/coverage/lcov.info",
"prepublish": "npm test"
},
"keywords": [
"shuffle",
"array",
"arrayLike",
"arr",
"random",
"randomly",
"randomize",
"rand"
],
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "bubkoo.wy@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mock-end/shuffle-array.git"
},
"bugs": {
"url": "https://github.com/mock-end/shuffle-array/issues"
},
"homepage": "https://github.com/mock-end/shuffle-array#readme",
"devDependencies": {
"jshint": "^2.9.1",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
},
"dependencies": {
"is-array": "^1.0.1",
"is-array-like": "^1.1.0"
}
}