-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.66 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "borges-bibliography-builder",
"version": "1.4.2",
"description": "A WordPress block plugin that creates accessible, structured bibliographies from DOI, PubMed, BibTeX, CSL-JSON, free text, and manual entries with RIS export.",
"author": "Dan Knauss",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"lint:php": "composer lint:php",
"lint:i18n": "node scripts/check-i18n.js",
"test": "wp-scripts test-unit-js",
"test:js:coverage": "wp-scripts test-unit-js --runInBand --coverage --coverageReporters=clover --coverageReporters=text-summary --silent",
"test:coordination": "node scripts/verify-sort-coordination.js",
"benchmark:perf": "RUN_PERF_BENCHMARK=1 wp-scripts test-unit-js --runInBand --runTestsByPath src/benchmarks/performance-benchmark.test.js",
"package:release": "sh ./scripts/package-release.sh",
"test:rest:local": "sh ./scripts/test-rest-endpoints.sh",
"test:e2e": "sh ./scripts/test-smoke-e2e.sh",
"test:e2e:playground": "sh ./scripts/test-playground-e2e.sh",
"test:e2e:lifecycle": "sh ./scripts/test-lifecycle-e2e.sh",
"test:demo-links": "sh ./scripts/check-demo-links.sh",
"test:runtime:local": "sh ./scripts/runtime-matrix/smoke.sh",
"test:interop:zotero": "sh ./scripts/test-zotero-interop.sh",
"test:a11y": "sh ./scripts/test-a11y.sh",
"assets:screenshots": "node scripts/capture-screenshots.js",
"assets:icons": "node scripts/generate-icons.js",
"assets:banners": "python3 scripts/generate_brand_assets.py",
"assets:banners:quick": "python3 scripts/generate_brand_assets.py --skip-render"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/tests/e2e/",
"<rootDir>/.claude/",
"<rootDir>/.tmp/"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js",
"!src/**/__tests__/**",
"!src/**/__fixtures__/**",
"!src/**/__snapshots__/**",
"!src/benchmarks/**",
"!src/test-utils/**",
"!src/**/test-utils/**"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 80,
"functions": 90,
"lines": 90
}
}
},
"dependencies": {
"@citation-js/core": "0.7.18",
"@citation-js/plugin-bibtex": "0.7.18",
"@citation-js/plugin-doi": "0.7.18"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.54.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@wordpress/api-fetch": "7.42.0",
"@wordpress/block-editor": "^15.15.0",
"@wordpress/blocks": "^15.15.0",
"@wordpress/components": "^32.4.0",
"@wordpress/data": "^10.42.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.43.0",
"@wordpress/element": "^6.42.0",
"@wordpress/hooks": "^4.42.0",
"@wordpress/i18n": "^6.15.0",
"@wordpress/icons": "^12.0.0",
"@wordpress/notices": "^5.42.0",
"@wordpress/scripts": "^31.8.0",
"citeproc": "^2.4.63",
"prettier": "^2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"js-yaml": "^4.2.0",
"uuid": "^14.0.0",
"basic-ftp": "5.3.1",
"showdown": "^2.1.0",
"@babel/core": "^7.29.6",
"http-proxy-middleware": "^3.0.6",
"markdown-it": "^14.2.0",
"markdownlint-cli": {
"minimatch": "^3.1.5"
},
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.8"
},
"@sentry/node": {
"minimatch": "^9.0.8"
},
"webpack-dev-server": "^5.2.4"
}
}