-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.7 KB
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
{
"name": "@formonsus/vue-plugin-cli",
"description": "Cli tool to create Vue plugins with Rollup",
"author": "Aleksandar Milicevic",
"license": "MIT",
"version": "2.0.0",
"bin": {
"plugin-init": "./plugin-init.js"
},
"keywords": [
"vue",
"plugin",
"cli",
"template",
"rollup",
"generator"
],
"homepage": "https://github.com/Formonsus/vue-plugin-cli",
"repository": {
"type": "git",
"url": "git@github.com:Formonsus/vue-plugin-cli.git"
},
"bugs": {
"url": "https://github.com/Formonsus/vue-plugin-cli/issues",
"email": "aleksandarmilicevic18@gmail.com"
},
"files": [
"templates/*",
"plugin-init.js"
],
"scripts": {
"prepack": "husky install",
"lint": "eslint ./**/*.js ./**/.*.js",
"version:patch": "yarn changelog -p && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md' && yarn version --patch && git push origin && git push origin --tags",
"version:minor": "yarn changelog -m && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md' && yarn version --minor && git push origin && git push origin --tags",
"version:major": "yarn changelog -M && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md' && yarn version --major && git push origin && git push origin --tags"
},
"dependencies": {
"chalk": "^4.1.0",
"ejs": "^3.1.6",
"prompts": "^2.4.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.23.0",
"generate-changelog": "^1.8.0",
"husky": "^6.0.0"
},
"engines": {
"node": ">=12"
},
"volta": {
"node": "14.16.0",
"yarn": "1.22.10"
}
}