UNPKG

sortier

Version:
96 lines (95 loc) 2.84 kB
{ "author": "Snowcoders", "bin": { "sortier": "./bin/index.js" }, "dependencies": { "@types/estree": "~1.0.0", "@types/postcss-less": "^4.0.0", "@typescript-eslint/typescript-estree": "^8.0.0", "angular-html-parser": "^8.0.0", "cosmiconfig": "^9.0.0", "find-up": "^7.0.0", "flow-parser": "~0.263.0", "globby": "^14.0.0", "ignore": "^7.0.0", "postcss-less": "^6.0.0", "postcss-scss": "^4.0.0", "typescript": "^5.0.0" }, "description": "An opinionated code sorter", "devDependencies": { "@release-it/keep-a-changelog": "6.0.0", "@snowcoders/renovate-config": "3.0.0-beta.17", "@types/node": "22.13.9", "@typescript-eslint/eslint-plugin": "8.26.0", "@typescript-eslint/parser": "8.26.0", "changelog-updater": "2.0.3", "concurrently": "9.1.2", "cpy-cli": "5.0.0", "docsify-cli": "4.4.4", "eslint": "9.21.0", "eslint-config-prettier": "10.0.2", "eslint-plugin-import": "2.31.0", "eslint-plugin-prettier": "5.2.3", "husky": "9.1.7", "jest": "29.7.0", "lint-staged": "15.4.3", "prettier": "3.5.3", "release-it": "18.1.2", "rimraf": "6.0.1", "ts-jest": "29.2.6" }, "engines": { "node": ">=16.0.0" }, "exports": { ".": { "import": "./dist/lib/index.js", "require": "./dist-cjs/lib/index.js" }, "./package.json": "./package.json" }, "homepage": "https://snowcoders.github.io/sortier", "keywords": [ "order", "alphabetize", "sorter", "sort", "sorting", "organize", "import", "module" ], "license": "MIT", "main": "./dist-cjs/lib/index.js", "name": "sortier", "repository": "github:snowcoders/sortier", "scripts": { "build": "concurrently \"npm:build:*\"", "build:cjs": "tsc -p tsconfig.cjs.json && cpy ./src/cjs-package.json.txt ./dist-cjs --flat --rename=package.json", "build:esm": "tsc -p tsconfig.esm.json", "clean": "rimraf coverage dist dist-cjs", "husky:commit-msg": "echo 'No commitlint installed'", "husky:pre-commit": "npx --no lint-staged", "husky:pre-push": "npm test", "lint": "eslint --fix ./src/**/*.{js,jsx,ts,tsx}", "prepare": "npm run clean && npm run build && npx --no-install husky", "start": "npm run start:cli", "start:cli": "node bin/index.js", "start:docs": "concurrently \"npm:start:docs-*\"", "start:docs-playground": "npm run watch -w=src-playground", "start:docs-static": "docsify serve ./docs", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test-e2e": "docker build -f e2e_tests.dockerfile .", "version": "changelog-updater && git add ." }, "sideEffects": false, "type": "module", "types": "./dist/lib/index.d.ts", "version": "2.1.1", "workspaces": [ ".", "src-playground" ] }