-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "@flockos/vue-components",
"author": "Divyam Rastogi",
"version": "0.1.73",
"license": "ISC",
"keywords": [
"vue",
"components"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name flock ./src/index.js",
"lint": "vue-cli-service lint --fix"
},
"description": "## How to use: 1. Just use `npm install --save @flockos/vue-components` 2. Use the components in your file directly.",
"dependencies": {
"core-js": "^2.6.5",
"vue": "^2.6.10"
},
"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/*",
"*.json",
"*.js"
],
"main": "./dist/flock.common.js",
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.1.0",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.10"
}
}