-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "vue-formulate",
"version": "0.12.1",
"description": "The easiest way to build forms in Vue with validation and vuex support.",
"main": "dist/index.js",
"scripts": {
"dev": "webpack --hide-modules --watch",
"build": "NODE_ENV=production && webpack -p --hide-modules",
"test": "ava",
"watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wearebraid/vue-formulate-legacy.git"
},
"keywords": [
"vue",
"form",
"forms",
"validation",
"vuex",
"validate"
],
"author": "Justin Schroeder <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearebraid/vue-formulate-legacy/issues"
},
"homepage": "https://github.com/wearebraid/vue-formulate-legacy#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.2.0",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
]
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"clone-deep": "^3.0.1",
"shortid": "^2.2.8"
}
}