-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.46 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@e9ine/vue-form-plugin",
"version": "1.0.1",
"scripts": {
"serve": "vue-cli-service serve --open",
"demo": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test": "jest",
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "cross-env NODE_ENV=production rollup --config build/rollup.config.browser.js",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.es.js",
"build:umd": "cross-env NODE_ENV=production rollup --config build/rollup.config.umd.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postpublish": "git add CHANGELOG.md && git commit -m 'chore: changelog [ci skip]'"
},
"files": [
"src/assets",
"src/lib",
"src/scss",
"src/index.js",
"src/mixins",
"src/helpers",
"dist/"
],
"main": "dist/vue-form-plugin.umd.js",
"module": "dist/vue-form-plugin.esm.js",
"unpkg": "dist/vue-form-plugin.min.js",
"devDependencies": {
"@e9ine/eslint-config-vue": "latest",
"@vue/cli-plugin-babel": "^4.3.0",
"@vue/cli-plugin-eslint": "^4.3.0",
"@vue/cli-plugin-unit-jest": "^4.2.2",
"@vue/cli-service": "^4.3.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"conventional-changelog-cli": "^2.0.31",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.4.2",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"rollup": "^1.10.0",
"rollup-plugin-analyzer": "^3.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^5.0.0",
"sass-loader": "^8.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"yorkie": "^2.0.0"
},
"dependencies": {
"moment": "^2.24.0",
"v-runtime-template": "^1.10.0",
"vue-flatpickr-component": "^8.1.3",
"vue-multiselect": "^2.1.6",
"vue-tel-input": "^4.1.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"browser": true
},
"extends": [
"@e9ine/eslint-config-vue"
],
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
},
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"prettier": {
"semi": true,
"tabWidth": 4,
"singleQuote": true,
"printWidth": 500,
"jsxBracketSameLine": true
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js,!dist/*.js": [
"prettier --write",
"vue-cli-service lint",
"git add"
],
"*.vue": [
"prettier --write",
"vue-cli-service lint",
"git add"
],
"config.js": [
"node scripts/verifyUntrackable.js"
]
}
}