-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "@dzangolab/vue-cli-plugin-dzango",
"version": "0.1.5",
"description": "Vue cli plugin for bootstrapping a vuejs app",
"keywords": [
"cli",
"dzango",
"vue",
"vue3"
],
"homepage": "https://github.com/dzangolab/vue-cli-plugin-dzango#readme",
"bugs": {
"url": "https://github.com/dzangolab/vue-cli-plugin-dzango"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dzangolab/vue-cli-plugin-dzango.git"
},
"license": "MIT",
"author": "Dzango Technologies Limited",
"main": "index.js",
"scripts": {
"clean": "npm-run-all --parallel clean:*",
"clean:cache": "jest --clearCache",
"clean:test": "rimraf coverage tests/e2e/projects/*",
"fix": "npm-run-all --parallel lint:fix format:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"format:fix": "yarn format --write",
"lint": "eslint . ./generator --ext .js",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"prepublishOnly": "npx sort-package-json && yarn run lint",
"release": "shipjs prepare",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"sort-package": "npx sort-package-json"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@vue/cli-shared-utils": "4.5.15",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "8.1.1",
"eslint-plugin-vue-libs": "4.0.0",
"husky": "7.0.4",
"prettier": "2.5.1",
"shipjs": "0.24.3"
},
"peerDependencies": {
"@vue/cli-service": "^3.0.0 || ^4.0.0-0"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
}
}