-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
51
{
"name": "@dymantic/vue-forms",
"version": "1.0.2",
"description": "Form object and mixin for Vuejs based form",
"main": "dist/index.js",
"scripts": {
"test": "mocha-webpack --webpack-config webpack.config.js --require tests/setup.js tests/*.spec.js",
"watch": "mocha-webpack --webpack-config webpack.config.js --watch --require tests/setup.js tests/*.spec.js",
"build": "node_modules/webpack/bin/webpack.js --config webpack.config.js"
},
"keywords": [
"vuejs",
"form"
],
"author": "Michael Joyner",
"license": "ISC",
"babel": {
"plugins": [],
"ignore": [
"index.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Dymantic/vue-forms"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"jsdom": "^11.12.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"mocha-webpack": "^1.1.0",
"moxios": "^0.4.0",
"node-sass": "^4.9.2",
"sass-loader": "^6.0.6",
"sinon": "^4.1.3",
"vue": "^2.5.11",
"vue-template-compiler": "^2.5.11",
"webpack": "^3.10.0"
},
"dependencies": {
"@vue/test-utils": "^1.0.0-beta.24",
"axios": "^0.17.1",
"vue-loader": "^13.6.0"
}
}