-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 3.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "prettier-plugin-multiline-arrays",
"version": "3.0.6",
"description": "Prettier plugin to force all arrays to be multiline.",
"keywords": [
"array",
"format",
"multiline",
"plugin",
"prettier",
"printer"
],
"homepage": "https://github.com/electrovir/prettier-plugin-multiline-arrays",
"bugs": {
"url": "https://github.com/electrovir/prettier-plugin-multiline-arrays/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/electrovir/prettier-plugin-multiline-arrays"
},
"license": "(MIT or CC0 1.0)",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "rm -rf dist && virmator compile",
"debug": "cross-env NEW_LINE_DEBUG=true npm run test",
"docs": "virmator docs",
"format": "prettier --color \"./**/*.+(cjs|css|graphql|html|js|json|jsx|less|md|mjs|scss|toml|ts|tsx|yaml|yml)\" --write --list-different",
"publish": "virmator publish \"npm run compile && npm run test:all\"",
"test": "npm run compile && test-as-package \"virmator test\"",
"test:all": "npm test && concurrently --kill-others-on-fail --kill-signal SIGKILL -c auto --colors --names types,spelling,format,docs,deps \"npm run test:types\" \"npm run test:spelling\" \"npm run test:format\" \"npm run test:docs\" \"npm run test:deps\"",
"test:coverage": "npm run test coverage",
"test:debug": "npm run compile && test-as-package \"virmator test --inspect-brk --parallel=false\"",
"test:deps": "virmator deps check",
"test:docs": "virmator docs check",
"test:format": "prettier --color \"./**/*.+(cjs|css|graphql|html|js|json|jsx|less|md|mjs|scss|toml|ts|tsx|yaml|yml)\" --check",
"test:spelling": "virmator spellcheck",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@augment-vir/common": "^28.1.0",
"proxy-vir": "^1.0.0"
},
"devDependencies": {
"@augment-vir/chai": "^28.1.0",
"@electrovir/nyc": "^15.1.0-fix0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.16",
"@types/esprima": "^4.0.6",
"@types/estree": "^1.0.5",
"@types/mocha": "^10.0.6",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"cspell": "^8.8.3",
"dependency-cruiser": "^16.3.2",
"esbuild": "^0.21.4",
"istanbul-smart-text-reporter": "^1.1.4",
"markdown-code-example-inserter": "^1.0.0",
"mocha": "^10.4.0",
"mocha-spec-reporter-with-file-names": "^0.0.3",
"npm-check-updates": "~16.12.3",
"prettier-plugin-interpolated-html-tags": "^1.0.5",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "./",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1",
"test-as-package": "^1.0.0",
"ts-node": "^10.9.2",
"type-fest": "^4.18.3",
"typedoc": "^0.25.13",
"typescript": "^5.3.3",
"virmator": "^11.5.2"
},
"peerDependencies": {
"prettier": ">=3.0.0"
}
}