forked from cowsay-blog/hexo-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "hexo-webpack",
"version": "1.0.0",
"description": "Yet another Hexo plugin to enable awesome Webpack package system in your Hexo site.",
"main": "src/index.js",
"scripts": {
"release": "semantic-release",
"test": "ava test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cowsay-blog/hexo-webpack.git"
},
"keywords": [
"hexo",
"webpack"
],
"author": "MomoCow",
"license": "MIT",
"bugs": {
"url": "https://github.com/cowsay-blog/hexo-webpack/issues"
},
"homepage": "https://github.com/cowsay-blog/hexo-webpack#readme",
"devDependencies": {
"ava": "^3.15.0",
"fs-extra": "^10.0.0",
"hexo": "^6.0.0",
"hexo-cli": "^4.3.0",
"hexo-front-matter": "^2.0.0",
"hexo-util": "^2.5.0",
"js-yaml": "^4.1.0",
"nanoid": "^3.1.30",
"stream-to-string": "^1.2.0"
},
"peerDependencies": {
"hexo": "^6.0.0"
},
"dependencies": {
"bluebird": "^3.5.3",
"is-path-inside": "^3.0.3",
"lodash.get": "^4.4.2",
"memory-fs": "^0.5.0",
"traverse": "^0.6.6",
"util": "^0.12.3",
"webpack": "^5.0.0"
},
"files": [
"src"
]
}