array-move-multiple
Version:
Move multiple items in an array to a new position
72 lines (71 loc) • 1.69 kB
JSON
{
"name": "array-move-multiple",
"version": "1.0.5",
"description": "Move multiple items in an array to a new position",
"main": "bundle.js",
"scripts": {
"build": "rollup --config",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tamas-pap/array-move-multiple.git"
},
"keywords": [
"array",
"move",
"multiple",
"multi",
"many"
],
"author": "Tamas Pap <tamas@tamaspap.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tamas-pap/array-move-multiple/issues"
},
"homepage": "https://github.com/tamas-pap/array-move-multiple#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"jest": "^23.6.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^3.4.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"no-shadow": "off",
"arrow-parens": "off",
"operator-linebreak": "off",
"function-paren-newline": "off",
"implicit-arrow-linebreak": "off"
}
},
"jest": {
"transform": {}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"requirePragma": false,
"proseWrap": "preserve"
}
}