-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.93 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "comment-parser",
"version": "1.4.6",
"description": "Generic JSDoc-like comment parser",
"type": "module",
"main": "lib/index.cjs",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./es6/index.js",
"require": "./lib/index.cjs"
},
"./primitives": {
"import": "./es6/primitives.js",
"require": "./lib/primitives.cjs"
},
"./util": {
"import": "./es6/util.js",
"require": "./lib/util.cjs"
},
"./parser/*": {
"import": "./es6/parser/*.js",
"require": "./lib/parser/*.cjs"
},
"./stringifier/*": {
"import": "./es6/stringifier/*.js",
"require": "./lib/stringifier/*.cjs"
},
"./transforms/*": {
"import": "./es6/transforms/*.js",
"require": "./lib/transforms/*.cjs"
}
},
"types": "lib/index.d.ts",
"directories": {
"test": "tests"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/jest": "^30.0.0",
"convert-extension": "^0.3.0",
"jest": "^30.1.3",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.52.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"build": "rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/",
"format": "prettier --write src tests",
"pretest": "rimraf coverage; npm run build",
"test": "prettier --check src tests && jest --verbose",
"preversion": "npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"release:add": "changeset",
"release:version": "git pull origin main && changeset version && npm install && git add . && git commit -m \"release v$(node -p \"require('./package.json').version\")\"",
"release:publish": "git pull origin main && changeset publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/yavorskiy/comment-parser.git"
},
"keywords": [
"jsdoc",
"comments",
"parser"
],
"author": "Sergiy Yavorsky <sergiy@yavorsky.me> (https://github.com/syavorsky)",
"contributors": [
"Alex Grozav (https://github.com/alexgrozav)",
"Alexej Yaroshevich (https://github.com/zxqfox)",
"Andre Wachsmuth (https://github.com/blutorange)",
"Brett Zamir (https://github.com/brettz9)",
"Dieter Oberkofler (https://github.com/doberkofler)",
"Evgeny Reznichenko (https://github.com/zxcabs)",
"Javier \"Ciberma\" Mora (https://github.com/jhm-ciberman)",
"Jayden Seric (https://github.com/jaydenseric)",
"Jordan Harband (https://github.com/ljharb)",
"tengattack (https://github.com/tengattack)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/syavorsky/comment-parser/issues"
},
"homepage": "https://github.com/syavorsky/comment-parser"
}