@rightcapital/phpdoc-parser 0.3.5 → 0.3.6-feature-add-more-github-docs.2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +14 -15
package/README.md CHANGED
@@ -129,6 +129,8 @@ We are stilling waiting for someones to contribute, especially for the following
129
129
  - More docs
130
130
  - A script to monitor [upstream](https://github.com/phpstan/phpdoc-parser) updates and notify the author to catch up.
131
131
 
132
+ Please check out our [Contribution guide](docs/CONTRIBUTING.md)
133
+
132
134
  ## How did we create the initial version of this project.
133
135
 
134
136
  We created most of our code by using ChatGPT as a tool to transform most code from https://github.com/phpstan/phpdoc-parser to TypeScript version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rightcapital/phpdoc-parser",
3
- "version": "0.3.5",
3
+ "version": "0.3.6-feature-add-more-github-docs.2.1.0",
4
4
  "keywords": [
5
5
  "PHP",
6
6
  "PHPDoc",
@@ -28,24 +28,24 @@
28
28
  "dist"
29
29
  ],
30
30
  "devDependencies": {
31
- "@babel/core": "7.22.17",
31
+ "@babel/core": "7.22.19",
32
32
  "@babel/preset-env": "7.22.15",
33
33
  "@babel/preset-typescript": "7.22.15",
34
34
  "@commitlint/cli": "17.7.1",
35
35
  "@commitlint/config-conventional": "17.7.0",
36
36
  "@commitlint/cz-commitlint": "17.7.1",
37
- "@rightcapital/eslint-config-javascript": "7.0.0",
38
- "@rightcapital/eslint-config-typescript": "7.0.0",
39
- "@rightcapital/prettier-config": "6.0.0",
40
- "@types/jest": "29.5.4",
37
+ "@rightcapital/eslint-config-javascript": "7.0.1",
38
+ "@rightcapital/eslint-config-typescript": "7.0.1",
39
+ "@rightcapital/prettier-config": "6.0.1",
40
+ "@types/jest": "29.5.5",
41
41
  "@types/lodash": "4.14.198",
42
- "babel-jest": "29.6.4",
42
+ "babel-jest": "29.7.0",
43
43
  "beachball": "2.37.0",
44
44
  "commitizen": "4.3.0",
45
45
  "eslint": "8.49.0",
46
46
  "husky": "8.0.3",
47
47
  "inquirer": "9.2.11",
48
- "jest": "29.6.4",
48
+ "jest": "29.7.0",
49
49
  "prettier": "3.0.3",
50
50
  "ts-node": "10.9.1",
51
51
  "typescript": "5.2.2"
@@ -54,6 +54,11 @@
54
54
  "@types/node": "18.17.15",
55
55
  "lodash": "4.17.21"
56
56
  },
57
+ "config": {
58
+ "commitizen": {
59
+ "path": "@commitlint/cz-commitlint"
60
+ }
61
+ },
57
62
  "scripts": {
58
63
  "commit": "cz",
59
64
  "clean": "tsc --build --clean ./tsconfig.build.json",
@@ -61,15 +66,9 @@
61
66
  "check": "beachball check",
62
67
  "build": "pnpm run clean && tsc --project ./tsconfig.build.json",
63
68
  "preinstall": "npx only-allow pnpm",
64
- "prepare": "husky install",
65
69
  "start": "ts-node src/index.ts",
66
70
  "eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'",
67
71
  "eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'",
68
72
  "test": "jest"
69
- },
70
- "config": {
71
- "commitizen": {
72
- "path": "@commitlint/cz-commitlint"
73
- }
74
73
  }
75
- }
74
+ }