-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "vuex-form",
"version": "0.1.1",
"description": "Simple Vuex form handler with validation.",
"main": "dist/vuex-form.js",
"scripts": {
"test": "cross-env NODE_ENV=test karma start --single-run",
"test:watch": "cross-env NODE_ENV=test karma start"
},
"repository": {
"type": "git",
"url": "github.com/cj/vuex-form"
},
"keywords": [
"vue",
"vuejs",
"vuex",
"form",
"validation"
],
"author": "CJ Lazell",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"conventional-changelog-cli": "^1.2.0",
"cross-env": "^3.1.3",
"eslint": "^3.8.1",
"eslint-config-egoist-vue": "^2.0.6",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-plugin-vue": "^0.1.1",
"fast-async": "^6.1.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lodash": "^4.16.4",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"tern": "^0.20.0",
"vue": "^2.0.3",
"vue-loader": "^9.7.0",
"vuex": "^2.0.0",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^1.16.2"
}
}