-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.28 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
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
{
"name": "gulp-prettier",
"version": "7.0.0",
"description": "Format files with Prettier",
"license": "MIT",
"repository": "thomasvantuycom/gulp-prettier",
"author": {
"name": "Thomas Vantuycom",
"email": "thomasvantuycom@proton.me",
"url": "https://www.thomasvantuycom.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=24"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"gulp",
"prettier",
"gulp-prettier",
"gulpplugin"
],
"dependencies": {
"plugin-error": "^2.0.1",
"prettier": "^3.9.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"ava": "^8.0.1",
"p-event": "^7.1.0",
"semantic-release": "^25.0.7",
"vinyl": "^3.0.1",
"xo": "^4.0.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "release: ${nextRelease.version}"
}
],
"@semantic-release/github"
]
},
"xo": {
"rules": {
"markdown/no-multiple-h1": "off"
}
}
}