-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "@swjs/metalsmith-rename",
"version": "0.0.2",
"description": "重命名文件的 metalsmith 插件",
"keywords": [
"metalsmith",
"rename",
"file",
"plugin"
],
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"scripts": {
"test": "jest",
"clean": "rimraf lib dist es coverage",
"build": "rollup -c ./rollup.config.js",
"release": "npm run preRelease & bump --commit \"chore(release): publish v%s \" --push --tag --all",
"preRelease": "echo \"Please Update CHANGELOG.md ...\"",
"lint:js": "eslint --cache --ext .js src/",
"lint:fix": "npm run lint:js -- --fix",
"postinstall": "husky install",
"prepublishOnly": "npm run clean && npm run build && pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrSeaWave/metalsmith-rename.git"
},
"publishConfig": {
"access": "public"
},
"author": "Sea <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrSeaWave/metalsmith-rename/issues"
},
"homepage": "https://github.com/MrSeaWave/metalsmith-rename#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.6.0",
"eslint-config-sea": "^0.2.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.4",
"metalsmith": "^2.3.0",
"pinst": "^2.1.6",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.63.0"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"minimatch": "^3.0.4"
}
}