-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.04 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
{
"name": "@barretter/last-release-git-info-plugin",
"version": "1.2.0",
"description": "webpack plugin for create git info when build",
"author": "https://github.com/barretem",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/barretem/last-release-git-info-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"git",
"commit"
],
"files": [
"src",
"utils",
"index.js",
"nuxt.js"
],
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"stdver": "standard-version -m '[skip ci] chore(release): v%s'"
},
"dependencies": {
"fs-extra": "^10.0.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "2.3.2",
"standard-version": "^9.3.0"
},
"lint-staged": {
"*.@(md|json)": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"git add"
]
}
}