-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "@cosmonic/celestial-alignment",
"version": "1.1.0",
"description": "Formatting and code health for Cosmonic.",
"keywords": [
"formatting",
"Cosmonic",
"code health"
],
"homepage": "https://github.com/cosmonic/celestial-alignment#readme",
"bugs": {
"url": "https://github.com/cosmonic/celestial-alignment/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmonic/celestial-alignment.git"
},
"license": "MIT",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"main": ".prettierrc.js",
"bin": {
"align": "./dist/cli.js"
},
"scripts": {
"build": "virmator compile",
"format": "prettier \"./**/*.+(ts|tsx|json|html|css|md|js|jsx|yml|yaml)\" --write --config \".prettierrc.js\"",
"prepublishOnly": "npm run test:full && npm run build",
"spellcheck": "virmator spellcheck",
"test": "virmator test --no-write-config",
"test:full": "npm test && npm run spellcheck && prettier \"./**/*.+(ts|tsx|json|html|css|md|js|jsx|yml|yaml)\" --check --config \".prettierrc.js\""
},
"dependencies": {
"augment-vir": "2.2.1",
"prettier": "2.7.1",
"prettier-plugin-jsdoc": "0.3.38",
"prettier-plugin-multiline-arrays": "1.0.0",
"prettier-plugin-organize-imports": "3.0.0",
"prettier-plugin-packagejson": "2.2.18",
"prettier-plugin-sort-json": "0.0.2",
"prettier-plugin-toml": "0.3.1"
},
"devDependencies": {
"@types/node": "18.0.0",
"virmator": "2.0.7"
},
"publishConfig": {
"access": "public"
}
}