-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.15 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
90
91
92
93
94
{
"name": "vue-case",
"description": "A collection of Vue.js case filters",
"version": "1.0.7",
"author": {
"name": "Dmitry Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
},
"keywords": [
"camel-case",
"constant-case",
"capital-case",
"pascal-case",
"change-case",
"snake-case",
"capital-case",
"dot-case",
"title-case",
"swap-case",
"sentence-case",
"path-case",
"no-case",
"header-case",
"param-case",
"lowercase",
"uppercase",
"javascript",
"change",
"case",
"convert",
"transform"
],
"main": "dist/vue-case.umd.min.js",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/idimetrix/vue-case"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/idimetrix/vue-case/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/idimetrix/vue-case#readme",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib 'src/filters.js'",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"prepare": "npm run build"
},
"dependencies": {
"core-js": "^3.6.5",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2",
"text-case": "^1.0.9",
"vue": "^2.6.12"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.7",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-plugin-unit-jest": "^4.5.7",
"@vue/cli-service": "^4.5.7",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.1",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"vue-template-compiler": "^2.6.12"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"preset": "@vue/cli-plugin-unit-jest"
},
"gitHooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}