-
-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 2.17 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
{
"name": "vim-prettier",
"author": "Mitermayer Reis <mitermayer.reis@gmail.com>",
"version": "2.0.0-beta.1",
"description": "Vim plugin for prettier",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/prettier/vim-prettier.git"
},
"scripts": {
"test": "node scripts/vim-version.js && PRETTIER_EXEC_CMD_PATH= LOG_LEVEL=error PRETTIER_FORMATTING_FIXTURE_LANE=all node scripts/jest.js --forceExit",
"test:smoke": "node scripts/vim-version.js && PRETTIER_EXEC_CMD_PATH= LOG_LEVEL=error PRETTIER_FORMATTING_FIXTURE_LANE=all node scripts/jest.js tests/formatting.test.js --runInBand --testNamePattern=\"Prettier config|Prettier command shell\" --forceExit",
"test:formatting:core": "node scripts/vim-version.js && PRETTIER_EXEC_CMD_PATH= LOG_LEVEL=error PRETTIER_FORMATTING_FIXTURE_LANE=core node scripts/jest.js tests/formatting.test.js --runInBand --forceExit",
"test:formatting:core:exec": "node scripts/vim-version.js && node -e \"if (!process.env.PRETTIER_EXEC_CMD_PATH) { console.error('Set PRETTIER_EXEC_CMD_PATH to a Prettier executable'); process.exit(1); }\" && LOG_LEVEL=error PRETTIER_FORMATTING_FIXTURE_LANE=core node scripts/jest.js tests/formatting.test.js --runInBand --forceExit",
"test:formatting:passing": "node scripts/vim-version.js && PRETTIER_EXEC_CMD_PATH= LOG_LEVEL=error PRETTIER_FORMATTING_FIXTURE_LANE=known-passing node scripts/jest.js tests/formatting.test.js --runInBand --forceExit",
"test:formatting:quarantined": "node scripts/vim-version.js && PRETTIER_EXEC_CMD_PATH= LOG_LEVEL=error PRETTIER_FORMATTING_FIXTURE_LANE=quarantined node scripts/jest.js tests/formatting.test.js --runInBand --forceExit",
"test:editors:docker": "sh scripts/docker-editor-matrix.sh all",
"lint": "sh scripts/vint.sh --version && sh scripts/vint.sh ."
},
"dependencies": {
"@prettier/plugin-php": "^0.25.0",
"@prettier/plugin-xml": "^3.4.2",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^4.1.1",
"svelte": "^5.56.3"
},
"resolutions": {
"**/brace-expansion": "1.1.15",
"**/js-yaml": "4.2.0",
"**/minimatch": "3.1.5"
},
"devDependencies": {
"colors": "^1.3.2",
"jest": "29.7.0"
}
}