-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 KB
/
package.json
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
{
"name": "bibtex-tidy",
"version": "1.14.0",
"description": "Tidy bibtex files",
"homepage": "https://github.com/FlamingTempura/bibtex-tidy",
"repository": {
"type": "git",
"url": "https://github.com/FlamingTempura/bibtex-tidy.git"
},
"author": "FlamingTempura",
"license": "MIT",
"main": "./bibtex-tidy.js",
"module": "./bibtex-tidy.js",
"types": "./bibtex-tidy.d.ts",
"man": "./bibtex-tidy.0",
"bin": {
"bibtex-tidy": "./bin/bibtex-tidy"
},
"files": [
"bin/bibtex-tidy",
"bibtex-tidy.js",
"bibtex-tidy.d.ts",
"bibtex-tidy.0"
],
"scripts": {
"build": "node -r esbuild-register build.ts",
"serve": "node -r esbuild-register build.ts --serve",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node -r esbuild-register --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info \"src/**/*.spec.ts*\"",
"test:e2e": "node -r esbuild-register build.ts --no-defs && node -r esbuild-register test/index.ts",
"typecheck": "tsc --noEmit",
"cover": "./scripts/cover.sh",
"preversion": "git pull --rebase",
"version": "./scripts/prepare-release.sh",
"postversion": "git push --follow-tags && npm publish",
"codemirror-grammar": "lezer-generator src/ui/codemirrorExtensions/bibtex.grammar -o src/ui/codemirrorExtensions/__generated__/bibtex.ts",
"check": "npx @biomejs/biome check"
},
"engines": {
"node": ">12"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@codemirror/commands": "^6.6.1",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.1",
"@codemirror/view": "^6.33.0",
"@lezer/generator": "^1.7.1",
"@lezer/highlight": "^1.2.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.5.4",
"c8": "^10.1.2",
"core-js": "^3.38.1",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.23.1",
"esbuild-register": "^3.6.0",
"esbuild-svelte": "^0.8.1",
"puppeteer": "^23.3.0",
"svelte-preprocess": "^5.1.4",
"typescript": "^5.5.4"
}
}