|
| 1 | +{ |
| 2 | + "name": "php-parser", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "PHP Parser TypeScript representation", |
| 5 | + "main": "dist/index.js", |
| 6 | + "scripts": { |
| 7 | + "commit": "cz", |
| 8 | + "eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'", |
| 9 | + "eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'", |
| 10 | + "generate:types": "ts-node src/php-parser/generate-types.ts", |
| 11 | + "preinstall": "npx only-allow pnpm", |
| 12 | + "prepare": "husky install" |
| 13 | + }, |
| 14 | + "repository": "https://github.com/RightCapitalHQ/php-parser", |
| 15 | + "packageManager": "[email protected]", |
| 16 | + "publishConfig": { |
| 17 | + "registry": "https://registry.npmjs.org" |
| 18 | + }, |
| 19 | + "engines": { |
| 20 | + "node": ">=16.x", |
| 21 | + "pnpm": ">=8.x" |
| 22 | + }, |
| 23 | + "keywords": [ |
| 24 | + "PHP", |
| 25 | + "PHP Parser", |
| 26 | + "AST", |
| 27 | + "TypeScript", |
| 28 | + "Lexer" |
| 29 | + ], |
| 30 | + "author": "RightCapital Ecosystem team <[email protected]>", |
| 31 | + "license": "MIT", |
| 32 | + "dependencies": { |
| 33 | + "@rightcapital/phpdoc-parser": "^0.3.5", |
| 34 | + "lodash": "^4.17.21", |
| 35 | + "mustache": "^4.2.0", |
| 36 | + "prettier": "^3.0.3", |
| 37 | + "typescript": "^5.2.2" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "@commitlint/cli": "^17.7.1", |
| 41 | + "@commitlint/config-conventional": "^17.7.0", |
| 42 | + "@commitlint/cz-commitlint": "^17.7.1", |
| 43 | + "@rightcapital/eslint-config-javascript": "^7.0.0", |
| 44 | + "@rightcapital/eslint-config-typescript": "^7.0.0", |
| 45 | + "@rightcapital/prettier-config": "^6.0.0", |
| 46 | + "@types/lodash": "^4.14.198", |
| 47 | + "@types/mustache": "^4.2.2", |
| 48 | + "@types/node": "^20.6.0", |
| 49 | + "husky": "^8.0.3" |
| 50 | + }, |
| 51 | + "config": { |
| 52 | + "commitizen": { |
| 53 | + "path": "@commitlint/cz-commitlint" |
| 54 | + } |
| 55 | + } |
| 56 | +} |
0 commit comments