-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 1.92 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
84
85
86
87
88
89
90
91
{
"name": "metalsmith-renamer",
"version": "0.5.217",
"description": "Plugin to take a pattern and rename each matched file",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git@github.com:alex-ketch/metalsmith-renamer.git"
},
"scripts": {
"build": "microbundle --target node -f es,cjs",
"test": "jest",
"test:watch": "jest --watch",
"release": "semantic-release"
},
"keywords": [
"metalsmith",
"rename",
"file"
],
"author": "Alex Ketch",
"license": "MIT",
"dependencies": {
"minimatch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/preset-env": "7.26.8",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"babel-jest": "29.7.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"jest": "27.5.1",
"metalsmith": "2.6.3",
"microbundle": "0.15.1",
"prettier": "3.5.0",
"semantic-release": "24.2.2"
},
"release": {
"branches": [
"master",
{
"name": "next",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"eslint": {
"extends": [
"plugin:prettier/recommended"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}