UNPKG

sort-scripts

Version:

Sort a map of scripts in a logical order

48 lines (47 loc) 1.07 kB
{ "name": "sort-scripts", "version": "1.0.1", "description": "Sort a map of scripts in a logical order", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/camacho/sort-scripts.git" }, "bugs": { "url": "https://github.com/camacho/sort-scripts/issues" }, "homepage": "https://github.com/camacho/sort-scripts#readme", "author": "Patrick Camacho <patrick@daftdevelopers.com>", "keywords": [ "sort", "package", "scripts", "ordering", "documentation", "docs" ], "main": "index.js", "scripts": { "format": "prettier --single-quote --trailing-comma es5 --write \"*.js\"", "prepublishOnly": "jest", "test": "jest" }, "husky": { "scripts": { "pre-commit": "lint-staged", "pre-push": "yarn test" } }, "lint-staged": { "*.js": [ "prettier --single-quote --trailing-comma es5 --write", "git add" ] }, "devDependencies": { "husky": "^2.7.0", "jest": "^24.8.0", "lint-staged": "^8.2.1", "prettier": "^1.18.2" } }