prettier-plugin-java-for-cjs 2.8.1
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.
- package/README.md +158 -0
- package/dist/index.cjs +20803 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +594 -0
- package/dist/index.d.mts +596 -0
- package/dist/index.mjs +20803 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "prettier-plugin-java-for-cjs",
|
|
3
|
+
"version": "2.8.1",
|
|
4
|
+
"description": "Prettier Java Plugin",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"import": {
|
|
8
|
+
"types": "./dist/index.d.mts",
|
|
9
|
+
"default": "./dist/index.mjs"
|
|
10
|
+
},
|
|
11
|
+
"require": {
|
|
12
|
+
"types": "./dist/index.d.cjs",
|
|
13
|
+
"default": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://jhipster.github.io/prettier-java/",
|
|
20
|
+
"repository": "https://github.com/jhipster/prettier-java",
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"java-parser": "3.0.1"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "yarn run test:unit && yarn run test:e2e-core",
|
|
27
|
+
"test:unit": "mocha \"test/unit-test/**/*.spec.ts\" \"test/unit-test/**/*-spec.ts\"",
|
|
28
|
+
"test:e2e-core": "node scripts/clone-samples e2e-core && mocha \"test/repository-test/core-test.ts\"",
|
|
29
|
+
"test:e2e-jhipster1": "node scripts/clone-samples e2e-jhipster1 && mocha \"test/repository-test/jhipster-1-test.ts\"",
|
|
30
|
+
"test:e2e-jhipster2": "node scripts/clone-samples e2e-jhipster2 && mocha \"test/repository-test/jhipster-2-test.ts\"",
|
|
31
|
+
"test:all": "yarn run test && yarn run test:e2e-jhipster1 && yarn run test:e2e-jhipster2",
|
|
32
|
+
"clone-samples": "node scripts/clone-samples.js",
|
|
33
|
+
"build": "tsdown",
|
|
34
|
+
"build:watch": "tsdown --watch"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@chevrotain/types": "11.0.3",
|
|
38
|
+
"@types/chai": "5.0.1",
|
|
39
|
+
"@types/fs-extra": "11.0.4",
|
|
40
|
+
"@types/jest": "29.5.14",
|
|
41
|
+
"@types/klaw-sync": "6.0.5",
|
|
42
|
+
"@types/node": "18.19.64",
|
|
43
|
+
"@types/sinon": "17.0.3",
|
|
44
|
+
"ts-node": "10.9.2",
|
|
45
|
+
"typescript": "5.6.3",
|
|
46
|
+
"tsdown": "^0.19.0-beta.5"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"prettier": "^3.0.0"
|
|
50
|
+
}
|
|
51
|
+
}
|