-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "hexo-plausible-analytics",
"version": "0.3.0",
"description": "Integrate your Hexo blog with Plausible Analytics",
"main": "index.js",
"scripts": {
"test": "jest",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maaaaarco/hexo-plausible-analytics.git"
},
"keywords": [
"hexo",
"plausible",
"analytics"
],
"author": "Marco",
"license": "MIT",
"bugs": {
"url": "https://github.com/maaaaarco/hexo-plausible-analytics/issues"
},
"homepage": "https://github.com/maaaaarco/hexo-plausible-analytics#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"husky": "^5.1.3",
"jest": "^26.6.3",
"node-html-parser": "^3.0.4",
"standard-version": "^9.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}