-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.43 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
63
64
65
{
"name": "joplin-plugin-better-code-blocks",
"version": "1.1.0",
"scripts": {
"coverage": "vitest --coverage",
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
"lint": "echo 'Running eslint' && npm run eslint && echo 'Running stylelint' && npm run stylelint && echo 'Running vale' && npm run vale",
"lint:ci": "(trap 'RC=1' ERR; echo 'Running eslint'; npm run eslint; echo 'Running stylelint'; npm run stylelint; exit $RC)",
"eslint": "eslint src test test-integration test-support",
"eslint:fix": "eslint --fix src test test-integration test-support",
"prepare": "npm run dist",
"stylelint": "stylelint src/**/*.css",
"test": "vitest",
"test:integ": "vitest --mode integration-test",
"test:unit": "vitest --mode unit-test",
"ui": "vitest --ui --coverage",
"vale": "vale src test test-integration test-support --glob '**/*.{css,md,ts}'",
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update",
"updateVersion": "webpack --env joplin-plugin-config=updateVersion"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"files": [
"publish"
],
"devDependencies": {
"@joplin/lib": "~2.9",
"@mobily/ts-belt": "^3.13.1",
"@types/codemirror": "^5.60.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitest/coverage-v8": "^0.34.1",
"@vitest/ui": "^0.34.1",
"chalk": "^4.1.0",
"codemirror": "^5.65.9",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-webpack-plugin": "^4.0.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"happy-dom": "^11.0.2",
"jest-extended": "^4.0.1",
"strong-mock": "^8.0.1",
"stylelint": "^15.10.3",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"tar": "^6.1.11",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"type-fest": "^4.3.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}