UNPKG

powerplatform-review-tool

Version:

Evaluate Power Platform solution zip files based on best practice patterns

66 lines (65 loc) 1.9 kB
{ "name": "powerplatform-review-tool", "version": "1.1.0", "description": "Evaluate Power Platform solution zip files based on best practice patterns", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "files": [ "dist/" ], "bin": { "pp-review": "dist/cli.cjs" }, "scripts": { "build": "npm run build:types && npm run build:bundle", "build:types": "tsc --build tsconfig.json", "build:bundle": "node build-bundle.mjs", "prepublishOnly": "npm run build", "start": "node dist/cli.js", "dev": "npx ts-node bin/cli.ts", "link": "npm run build && npm link", "link-cli": "npm link", "test": "jest" }, "author": "Ramakrishnan Raman", "license": "MIT", "keywords": [ "powerplatform", "powerapps", "powerautomate", "copilot", "review", "codereviewtool", "powerplatformreviewtool" ], "dependencies": { "@xmldom/xmldom": "^0.9.8", "commander": "^11.0.0", "js-yaml": "^4.1.0", "jszip": "^3.10.1", "xpath": "^0.0.34" }, "devDependencies": { "@microsoft/api-extractor": "^7.52.7", "@types/js-yaml": "^4.0.9", "@types/node": "^20.0.0", "@types/xmldom": "^0.1.34", "cpy-cli": "^5.0.0", "dts-bundle-generator": "^9.5.1", "esbuild": "^0.25.2", "jest": "^29.0.0", "rimraf": "^5.0.0", "ts-jest": "^29.0.0", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typescript": "^5.0.0" } }