-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 loc) · 2.66 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@crishellco/vue-hubble",
"version": "0.0.0-semantically-released",
"author": "Chris Mitchell (@crishellco)",
"description": "Vue test selectors made easy",
"main": "./dist/vue-hubble.umd.js",
"module": "./dist/vue-hubble.es.js",
"exports": {
".": {
"import": "./dist/vue-hubble.es.js",
"require": "./dist/vue-hubble.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit": "jest",
"test:unit:changed": "yarn test:unit --changedSince=master",
"test:unit:watch": "yarn test:unit:changed --watch",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:js:fix": "yarn lint:js --fix",
"lint:md": "remark . --frail",
"build": "rimraf dist && vite build --mode prod",
"generate:md": "remark . --output",
"install:demo": "cd demo && yarn",
"install:docs": "cd docs && yarn",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crishellco/vue-hubble.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/crishellco/vue-hubble/issues"
},
"homepage": "https://vue-hubble.crishell.co/",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/eslint-parser": "7.24.7",
"@commitlint/cli": "19.3.0",
"@crishellco/eslint-plugin": "^1.3.0",
"@form8ion/commitlint-config": "1.0.76",
"@form8ion/remark-lint-preset": "5.0.1",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/test-utils": "^2.0.0",
"babel-core": "6.26.3",
"babel-jest": "29.7.0",
"core-js": "3.37.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-loader": "4.0.2",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-prettier-vue": "4.2.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^4.0.0",
"eslint-plugin-vue": "9.26.0",
"husky": "9.0.11",
"jest": "27.5.1",
"npm-run-all2": "6.2.0",
"poi": "12.10.3",
"prettier": "3.3.2",
"regenerator-runtime": "0.14.1",
"remark-cli": "11.0.0",
"remark-toc": "9.0.0",
"rimraf": "5.0.7",
"semantic-release": "22.0.12",
"vite": "5.3.2",
"vue": "^3.0.0",
"vue-html-loader": "1.2.4",
"vue-jest": "5.0.0-alpha.10",
"vue-loader": "17.4.2",
"vue-style-loader": "4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}