-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "vue-submit",
"version": "0.7.0",
"description": "A pure Vue component submit button with a Ladda-style spinner",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib --name vue-submit ./src/component/VueSubmit.vue"
},
"module": "src/library.js",
"main": "dist/vue-submit.umd.js",
"unpkg": "dist/vue-submit.umd.js",
"dependencies": {
"vue": "^2.5.17"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-service": "^3.0.3",
"@vue/eslint-config-prettier": "^3.0.3",
"bootstrap": "^4.1.3",
"lint-staged": "^7.2.2",
"vue-cli-plugin-pug": "^1.0.7",
"vue-template-compiler": "^2.5.17"
},
"homepage": "https://github.com/Worthaboutapig/vue-submit",
"keywords": [
"vue",
"ladda",
"submit",
"form",
"spinner"
],
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/Worthaboutapig/vue-submit"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"files": [
"dist/*",
"src/*",
"public/*"
]
}