This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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
71
72
73
{
"name": "@belsrc/vue-gen",
"version": "1.1.0",
"description": "Yet another Vue component generator",
"main": "vue-gen.js",
"bin": {
"vuegen": "vue-gen.js"
},
"gitHooks": {
"commit-msg": "commitlint -E GIT_PARAMS",
"pre-commit": "lint-staged"
},
"scripts": {
"lint": "npx eslint -c .eslintrc.js --fix --color --ignore-path .eslintignore \"**/*.{js,jsx,ts,tsx}\"",
"prettier": "npx prettier --config .prettierrc.js --write \"**/*.{js,jsx,ts,tsx,md,html}\"",
"clean": "npm-run-all prettier lint",
"test": "jest --verbose --passWithNoTests",
"test:changed": "jest -o --passWithNoTests",
"coverage": "jest --verbose --coverage --passWithNoTests",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"standard": "standard-version --no-verify",
"push-tags": "git push --follow-tags origin master",
"release": "npm-run-all clean test standard push-tags"
},
"jest": {
"clearMocks": true,
"resetModules": true,
"coverageDirectory": "coverage",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"keywords": [
"vue component generator",
"vue generator",
"vue component",
"vue cli",
"vue",
"component",
"generator",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/belsrc/vue-gen.git"
},
"bugs": {
"url": "https://github.com/belsrc/vue-gen/issues"
},
"homepage": "https://github.com/belsrc/vue-gen#readme",
"author": "bryan@bryanckizer.com",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"conventional-changelog-cli": "2.0.25",
"cross-env": "6.0.3",
"eslint": "6.5.1",
"eslint-config-belsrc": "1.1.0",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"standard-version": "7.0.0",
"yorkie": "2.0.0"
},
"dependencies": {
"commander": "3.0.2",
"fjp": "0.2.4",
"inquirer": "7.0.0"
}
}