-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.73 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
{
"name": "@detools/vue-form",
"version": "5.13.8",
"description": "Form State Management for VueJS",
"main": "VueForm/index.js",
"scripts": {
"start": "webpack-dev-server --config example/webpack.config.js --inline --hot",
"build": "NODE_ENV=production webpack --config example/webpack.config.js --progress --mode production",
"server": "node scripts/server.js",
"lint": "eslint --ext .js,.vue VueForm",
"lint:format": "npm run lint -- --format eslint-formatter-friendly",
"prepublish": "npm test",
"pub": "npm publish ./ --access public",
"test": "NODE_ENV=test tape -r @babel/register VueForm/**/*.test.js | tap-diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/detools/vue-form.git"
},
"keywords": [
"vue",
"form",
"state",
"management",
"validation",
"errors"
],
"author": "Anton Kuznetsov <[email protected]> (https://github.com/isnifer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/detools/vue-form/issues"
},
"homepage": "https://github.com/detools/vue-form#readme",
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.9",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "7.16.7",
"@babel/plugin-transform-runtime": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/register": "7.17.7",
"@babel/runtime": "7.17.9",
"@detools/eslint-config-vue": "2.4.1",
"@detools/tap-diff": "0.2.2",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-jsx-v-model": "2.0.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-transform-vue-jsx": "4.0.1",
"babel-plugin-vue-jsx-sync": "0.0.5",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.5.2",
"element-ui": "2.4.11",
"eslint": "7.12.1",
"express": "4.18.1",
"express-fileupload": "1.3.1",
"less": "3.13.1",
"less-loader": "5.0.0",
"lodash": "4.17.21",
"mini-css-extract-plugin": "0.9.0",
"prettier": "2.6.2",
"sinon": "9.2.4",
"style-loader": "1.1.3",
"tape": "4.15.1",
"tape-async": "2.3.0",
"url-loader": "4.1.1",
"vue": "2.6.14",
"vue-loader": "15.9.8",
"vue-router": "3.5.1",
"vue-template-compiler": "2.6.14",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3"
},
"peerDependencies": {
"element-ui": "^2.4.11",
"lodash": "^4.17.21",
"vue": "^2.6.14"
},
"dependencies": {
"invariant": "^2.2.4"
}
}