phpeggy
Version:
PHP target for Peggy parser generator
61 lines • 2.33 kB
JSON
{
"name": "phpeggy",
"version": "3.0.0",
"description": "PHP target for Peggy parser generator",
"main": "src/phpeggy.js",
"peerDependencies": {
"peggy": "^5.0.3"
},
"devDependencies": {
"@peggyjs/eslint-config": "^6.0.0",
"@types/chai": "^5.2.0",
"@types/node": "^24.0.0",
"chai": "^5.2.0",
"eslint": "^9.28.0",
"eslint-plugin-mocha": "11.1.0",
"mocha": "^11.6.0",
"peggy": "^5.0.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"repository": {
"type": "git",
"url": "https://github.com/marcelbolten/phpeggy.git"
},
"keywords": [
"peggy",
"plugin",
"php",
"parser",
"generator",
"PEG"
],
"contributors": [
"Elantcev Mikhail",
"James Nylen <jnylen@gmail.com>",
"Marcel Bolten <github@marcelbolten.de>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marcelbolten/phpeggy/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build:fixtures": "rm -f test/fixtures/*.php && GENERATE_MISSING_FIXTURES=y npm test",
"build:manual-tests": "cd manual-test && node test.js",
"lint": "eslint .",
"php:all": "npm run php:csfix && npm run php:static && npm run php:test",
"php:all-manual": "npm run php:csfix-manual && npm run php:static-manual && npm run php:test",
"php:csfix": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --diff --using-cache=no",
"php:csfix-manual": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.manual.php -v --dry-run --diff --using-cache=no",
"php:lint": "npm run php:csfix && npm run php:static",
"php:lint-manual": "npm run php:csfix-manual && npm run php:static-manual",
"php:static": "for f in test/fixtures/*.php; do echo \"\nProcessing $f ...\nPHPStan:\"; ./vendor/bin/phpstan analyse -c phpstan.neon --no-progress $f; echo \"Psalm:\" ; ./vendor/bin/psalm $f; done",
"php:static-manual": "for f in manual-test/output/*.php; do echo \"\nProcessing $f ...\nPHPStan:\"; ./vendor/bin/phpstan analyse -c phpstan.neon --no-progress $f; echo \"Psalm:\" ; ./vendor/bin/psalm $f; done",
"php:test": "ONLY_RUN_PHP=y npm test",
"test:generate-parsers": "ONLY_GENERATE_PARSERS=y npm test",
"test": "mocha"
}
}