-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@rightcapital/php-parser",
"version": "1.4.9",
"description": "TypeScript types for PHP Parser JSON representation",
"keywords": [
"PHP",
"PHP Parser",
"AST",
"TypeScript",
"Lexer"
],
"repository": "https://github.com/RightCapitalHQ/php-parser",
"license": "MIT",
"author": "RightCapital Ecosystem team <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "pnpm run clean && tsc --project ./tsconfig.build.json",
"change": "beachball change --no-commit",
"check": "beachball check",
"clean": "tsc --build --clean ./tsconfig.build.json",
"commit": "cz",
"fix": "pnpm run fix:eslint && pnpm run fix:prettier",
"fix:eslint": "eslint --report-unused-disable-directives --fix .",
"fix:prettier": "prettier --write .",
"generate:types": "tsx src/php-parser/generate-types.ts",
"preinstall": "npx only-allow pnpm",
"postinstall": "command -v composer >/dev/null 2>&1 && composer install || echo 'Composer not found, skipping.'",
"lint": "concurrently 'pnpm:lint:*'",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:prettier": "prettier --check .",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@rightcapital/phpdoc-parser": "0.4.72",
"lodash": "4.17.21",
"mustache": "4.2.0",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/cz-commitlint": "19.5.0",
"@rightcapital/eslint-config": "38.0.0",
"@rightcapital/prettier-config": "7.1.7",
"@types/lodash": "4.17.10",
"@types/mustache": "4.2.5",
"@types/node": "20.16.11",
"beachball": "2.47.1",
"concurrently": "9.0.1",
"eslint": "9.13.0",
"husky": "9.1.6",
"tsx": "4.19.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.x",
"pnpm": ">=8.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}