UNPKG

@codemod-utils/ast-template

Version:

Utilities for handling *.hbs files as abstract syntax tree

65 lines 1.55 kB
{ "name": "@codemod-utils/ast-template", "version": "2.0.1", "description": "Utilities for handling *.hbs files as abstract syntax tree", "keywords": [ "codemod", "ember-codemod" ], "repository": { "type": "git", "url": "git@github.com:ijlee2/codemod-utils.git" }, "license": "MIT", "author": "Isaac J. Lee", "type": "module", "exports": { ".": "./dist/index.js", "./*": { "types": "./dist/*.d.ts", "default": "./dist/*.js" } }, "main": "dist/index.js", "types": "dist/index.d.ts", "typesVersions": { "*": { "*": [ "dist/*" ] } }, "directories": { "test": "tests" }, "files": [ "dist" ], "dependencies": { "ember-template-recast": "^6.1.5" }, "devDependencies": { "@sondr3/minitest": "^0.1.2", "@types/node": "^20.17.54", "concurrently": "^9.1.2", "eslint": "^9.27.0", "prettier": "^3.5.3", "typescript": "^5.8.3", "@shared-configs/eslint-config-node": "0.0.0", "@codemod-utils/tests": "2.0.1", "@shared-configs/typescript": "0.0.0", "@shared-configs/prettier": "0.0.0" }, "engines": { "node": "20.* || >= 22" }, "scripts": { "build": "./build.sh --production", "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", "test": "./build.sh --test && mt dist-for-testing --quiet" } }