UNPKG

2.2 kBJSONView Raw
1{
2 "name": "prettier-plugin-jsdoc",
3 "version": "0.3.36",
4 "description": "A Prettier plugin to format JSDoc comments.",
5 "private": false,
6 "workspaces": {
7 "prettier-plugin-fake": "./prettier-plugin-fake"
8 },
9 "main": "dist/index.js",
10 "module": "dist/index.min.mjs",
11 "unpkg": "dist/index.umd.min.js",
12 "types": "dist/index.d.ts",
13 "files": [
14 "dist/index.js",
15 "dist/index.min.mjs",
16 "dist/index.umd.min.js",
17 "dist/index.d.ts"
18 ],
19 "scripts": {
20 "prepare": "yarn build",
21 "lint": "eslint --ext '.ts' ./src",
22 "test": "yarn build --test && jest",
23 "release": "standard-version && yarn publish && git push --follow-tags origin master",
24 "prettierAll": "prettier --write \"**/*.ts\"",
25 "clean": "rm -fr dist",
26 "build": "node script.mjs"
27 },
28 "keywords": [
29 "prettier",
30 "plugin",
31 "jsdoc",
32 "comment"
33 ],
34 "author": "Hossein mohammadi (hosseinm.developer@gmail.com)",
35 "license": "MIT",
36 "bugs": {
37 "url": "https://github.com/hosseinmd/prettier-plugin-jsdoc/issues"
38 },
39 "homepage": "https://github.com/hosseinmd/prettier-plugin-jsdoc#readme",
40 "repository": {
41 "type": "git",
42 "url": "git+https://github.com/hosseinmd/prettier-plugin-jsdoc.git"
43 },
44 "devDependencies": {
45 "@commitlint/config-conventional": "^14.1.0",
46 "@rollup/plugin-commonjs": "^21.0.3",
47 "@rollup/plugin-json": "^4.1.0",
48 "@rollup/plugin-node-resolve": "^13.1.3",
49 "@types/jest": "^27.4.1",
50 "@types/mdast": "^3.0.10",
51 "@typescript-eslint/eslint-plugin": "^5.3.0",
52 "@typescript-eslint/parser": "^5.3.0",
53 "commitlint": "^14.1.0",
54 "eslint": "^8.1.0",
55 "eslint-config-prettier": "^8.5.0",
56 "eslint-plugin-prettier": "^4.0.0",
57 "husky": "^7.0.4",
58 "jest": "^27.5.1",
59 "jest-specific-snapshot": "^5.0.0",
60 "prettier": "^2.6.1",
61 "rollup": "^2.70.1",
62 "standard-version": "^9.3.2",
63 "terser": "^5.12.1",
64 "ts-jest": "^27.1.4",
65 "typescript": "^4.4.4"
66 },
67 "peerDependencies": {
68 "prettier": ">=2.1.2"
69 },
70 "dependencies": {
71 "binary-searching": "^2.0.5",
72 "comment-parser": "^1.3.1",
73 "mdast-util-from-markdown": "^1.2.0"
74 },
75 "engines": {
76 "node": ">=12.0.0"
77 }
78}