-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"author": {
"name": "Bruno Ilponse"
},
"bugs": {
"url": "https://github.com/biwano/vue-forms-mixin/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "A helper package for VueJS 2 to manage forms validation and messages",
"homepage": "https://github.com/biwano/vue-forms-mixin#readme",
"keywords": [
"vuejs",
"forms"
],
"license": "ISC",
"main": "index.js",
"name": "vue-forms-mixin",
"repository": {
"type": "git",
"url": "git+https://github.com/biwano/vue-forms-mixin.git"
},
"scripts": {
"dev": "webpack-dev-server --inline --progress --config config/webpack.conf.js",
"start": "npm run dev",
"test": "karma start config/karma.conf.js --single-run",
"share": "npm run test && npm publish"
},
"version": "0.4.2",
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"html-webpack-plugin": "^3.2.0",
"vue": "^2.5.16",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.3",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-webpack": "^3.0.0"
}
}