-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
59
60
61
62
63
{
"author": "Thomas Massmann",
"dependencies": {
"core-js": "^3.6.5",
"sanitize-html": "^2.5.3"
},
"description": "Plone Vuetify Component Library",
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.2.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.29.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.12.1",
"jest": "^27.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"vue-template-compiler": "^2.6.11"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"src",
"nuxt"
],
"keywords": [
"Component",
"Plone",
"Vue",
"Vuetify"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.vue": [
"yarn lint",
"git add"
]
},
"name": "@cusy/plone-components-vuetify",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cusyio/plone-components-vuetify.git"
},
"scripts": {
"lint": "vue-cli-service lint",
"precommit": "lint-staged",
"release": "yarn test && standard-version -a && git push --follow-tags && yarn publish",
"serve": "vue-cli-service serve",
"test": "vue-cli-service test:unit"
},
"version": "0.1.0"
}