-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "@stijlbreuk/prettier-config",
"version": "1.5.3",
"description": "A global Prettier config to be used in Stijlbreuk projects",
"keywords": [
"prettier",
"prettier-config",
"stijlbreuk"
],
"bugs": {
"url": "https://github.com/stijlbreuk-dev/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stijlbreuk-dev/prettier-config.git"
},
"license": "MIT",
"author": {
"name": "Stijlbreuk",
"email": "[email protected]",
"url": "https://stijlbreuk.nl"
},
"contributors": [
{
"name": "Max Altena",
"email": "[email protected]",
"url": "https://stijlbreuk.nl"
}
],
"main": "index.js",
"files": [
"index.js",
"prettier.config.js"
],
"scripts": {
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"prettier": "prettier --check .",
"prettier:fix": "npm run prettier -- --write",
"semantic-release": "semantic-release",
"sort-package-json": "sort-package-json"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.4",
"@semantic-release/npm": "^11.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"semantic-release": "^22.0.9",
"sort-package-json": "^2.6.0"
},
"peerDependencies": {
"prettier": "^2 || ^3"
},
"volta": {
"node": "20.10.0"
}
}