forked from janiskelemen/formvuelar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·117 lines (117 loc) · 3.14 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "formvuelar",
"description": "Vue form components with server side validation in mind.",
"keywords": [
"vue",
"formvuelar",
"form",
"validation",
"select",
"input",
"upload",
"tailwind",
"laravel"
],
"main": "./dist/formvuelar.common.js",
"version": "1.5.11",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-examples": "vue-cli-service build --dest example; cp example/index.html index.html; sed -i \\.bak 's/\\/js/\\/formvuelar\\/example\\/js/g' index.html; rm index.html.bak; sed -i \\.bak 's/\\/css/\\/formvuelar\\/example\\/css/g' index.html; rm index.html.bak",
"bundle": "vue-cli-service build --target lib --name formvuelar ./src/formvuelar.js",
"lint": "vue-cli-service lint",
"test:cypress": "vue-cli-service test:e2e",
"test:e2e": "vue-cli-service test:e2e --headless",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"axios": "^0.19.2",
"fuse.js": "^3.4.6",
"lodash": "^4.17.15",
"popper.js": "^1.16.1",
"vue": "^2.6.11",
"vue-color": "^2.7.0",
"vue-flatpickr-component": "^8.1.5",
"vue-router": "^3.1.5"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.2",
"@vue/cli-plugin-babel": "^4.2.2",
"@vue/cli-plugin-e2e-cypress": "^4.2.2",
"@vue/cli-plugin-eslint": "^4.2.2",
"@vue/cli-plugin-unit-jest": "^4.2.2",
"@vue/cli-service": "^4.2.2",
"@vue/test-utils": "^1.0.0-beta.20",
"axios-mock-adapter": "^1.17.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"cypress": "^4.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.1",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"tailwindcss": "^1.2.0",
"vue-highlightjs": "^1.3.3",
"vue-template-compiler": "^2.6.11"
},
"files": [
"dist/*",
"src/*",
"*.json"
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"rules": {
"vue/html-self-closing": 0,
"vue/html-indent": 1,
"vue/max-attributes-per-line": 0,
"vue/require-prop-type-constructor": 0,
"import/no-unresolved": 0,
"import/no-unassigned-import": 0,
"semi": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/"
}
}