UNPKG

@regele/devtools

Version:

A collection of developer utilities for code processing and text analysis

70 lines (69 loc) 1.81 kB
{ "name": "@regele/devtools", "version": "0.9.6", "description": "A collection of developer utilities for code processing and text analysis", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "files": [ "dist", "bin" ], "bin": { "@regele/devtools": "./bin/devtools.js", "@regele/devtools-beautify": "./bin/beautify.js", "@regele/devtools-clean": "./bin/clean.js", "@regele/devtools-analyze": "./bin/analyze.js", "@regele/devtools-analyze-code": "./bin/analyze-code.js" }, "scripts": { "build": "rollup -c", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", "prepublishOnly": "npm run build" }, "keywords": [ "developer", "tools", "utilities", "code", "comment-remover", "beautifier", "word-counter", "code-analyzer", "handwriting-timer", "text-analysis" ], "author": "drwn", "license": "MIT", "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-typescript": "^11.1.6", "@types/jest": "^29.5.12", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "eslint": "^8.57.0", "jest": "^29.7.0", "rollup": "^4.13.0", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-terser": "^7.0.2", "ts-jest": "^29.1.2", "tslib": "^2.6.2", "typescript": "^5.4.5" }, "dependencies": { "@babel/parser": "^7.23.9", "@babel/traverse": "^7.23.9", "@babel/types": "^7.23.9", "chalk": "^4.1.2", "commander": "^9.4.0", "diff": "^5.1.0", "fast-glob": "^3.2.12", "ignore": "^5.2.0", "ora": "^8.2.0", "prettier": "^3.0.0" } }