-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.45 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
95
96
97
{
"name": "@teamwork/vue-dropdown-directive",
"version": "3.0.5",
"description": "A vue.js directive for handling dropdowns",
"author": "Mattia Uggè (matcmd) <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run lint && npm run test:unit && vue-cli-service build",
"build:npm": "npm run lint && npm run test:unit && vue-cli-service build --target lib --name vue-dropdown-directive src/Dropdown.directive.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"main": "dist/vue-dropdown-directive.umd.js",
"unpkg": "dist/vue-dropdown-directive.umd.min.js",
"dependencies": {
"core-js": "^3.26.0",
"debounce": "^1.2.1",
"vue": "^3.2.41"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/compiler-sfc": "^3.2.41",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/test-utils": "2.2.1",
"@vue/vue3-jest": "^27.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.7.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"airbnb-base",
"plugin:vue/vue3-recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser",
"sourceType": "module"
},
"rules": {
"max-len": 0,
"consistent-return": "off",
"no-param-reassign": "off",
"no-unused-expressions": "off"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/Teamwork/vue-dropdown-directive/issues"
},
"gitHooks": {
"pre-commit": "vue-cli-service lint"
},
"homepage": "https://github.com/Teamwork/vue-dropdown-directive#readme",
"keywords": [
"directive",
"dropdown",
"vue.js",
"vue",
"teamwork"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Teamwork/vue-dropdown-directive.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/*"
],
"engines": {
"node": ">=17.9.1"
}
}