This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "vue-fields",
"version": "1.1.3",
"description": "The form fields generator for Vue.js",
"homepage": "https://github.com/pagekit/vue-fields",
"license": "MIT",
"main": "dist/vue-fields.common.js",
"module": "dist/vue-fields.esm.js",
"unpkg": "dist/vue-fields.min.js",
"jsdelivr": "dist/vue-fields.min.js",
"files": [
"src",
"dist"
],
"keywords": [
"vue",
"vuejs",
"mvvm"
],
"bugs": {
"url": "https://github.com/pagekit/vue-fields/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagekit/vue-fields.git"
},
"scripts": {
"up": "yarn upgrade-interactive --latest",
"build": "rollup -c",
"release": "node ./build/release.js",
"eslint": "eslint . --ext .js,.vue",
"eslint-fix": "eslint . --ext .js,.vue --fix",
"storybook": "start-storybook -c .storybook -p 9001"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@storybook/addon-actions": "^5.0.0",
"@storybook/vue": "^5.0.0",
"babel-loader": "^8.0.5",
"babel-preset-vue": "^2.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^4.7.0",
"replace-in-file": "^4.1.0",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-vue": "^3.0.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10"
}
}