-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.74 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": "vuepress-theme-melody",
"version": "0.0.1",
"description": "A simple & beautiful blog theme for VuePress.",
"main": "index.js",
"scripts": {
"cz": "git-cz",
"release": "bump-version"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Molunerfinn/vuepress-theme-melody.git"
},
"keywords": [
"vuepress",
"vuepress-theme"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": ["./node_modules/@picgo/bump-version/commitlint-picgo"]
},
"author": "Molunerfinn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Molunerfinn/vuepress-theme-melody/issues"
},
"homepage": "https://github.com/Molunerfinn/vuepress-theme-melody#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@picgo/bump-version": "^1.0.3",
"babel-eslint": "^10.0.3",
"commitizen": "^4.0.3",
"conventional-changelog": "^3.1.18",
"cz-customizable": "^6.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"stylus-supremacy": "^2.14.0"
},
"dependencies": {
"dayjs": "^1.8.19",
"lodash": "^4.17.15",
"vuejs-paginate": "^2.1.0"
}
}