-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.98 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
{
"name": "vue-smooth-form",
"version": "1.1.4",
"author": "Chad Robinson <[email protected]>",
"private": false,
"description": "Formik-inspired form handler for VueJS",
"keywords": [
"smooth",
"async",
"validation",
"vue",
"forms"
],
"license": "MIT",
"homepage": "https://github.com/crrobinson14/vue-smooth-form",
"bugs": "https://github.com/crrobinson14/vue-smooth-form/issues",
"repository": {
"type": "git",
"url": "https://github.com/crrobinson14/vue-smooth-form.git"
},
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --target lib --name vueSmoothForm ./src/components/VueSmoothForm.vue",
"build-wc": "vue-cli-service build --target wc --name vue-smoothForm 'src/components/VueSmoothForm.vue'",
"build-wc-async": "vue-cli-service build --target wc-async --name vue-smoothForm 'src/components/VueSmoothForm.vue'",
"test": "vue-cli-service test",
"e2e": "vue-cli-service e2e",
"lint": "vue-cli-service lint",
"e2e:open": "vue-cli-service e2e:open",
"pub": "npm run build && npm version patch && npm publish --access public"
},
"files": [
"dist/*",
"src/*",
"*.json",
"*.js"
],
"main": "./dist/vueSmoothForm.common.js",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-plugin-e2e-cypress": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.2",
"@vue/cli-plugin-unit-mocha": "^3.9.0",
"@vue/cli-service": "latest",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.10",
"chai": "^4.1.2",
"lint-staged": "^9.2.0",
"vue-template-compiler": "^2.5.13"
},
"dependencies": {
"object-set": "^1.0.1",
"vue": "^2.6.10"
}
}