-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "@sidro/carousel",
"version": "1.0.1",
"private": false,
"main": "./dist/SidroCarousel.common.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"build-bundle": "vue-cli-service build --target lib --name SidroCarousel ./src/components/index.js"
},
"peerDependencies": {
"vue": "^2.5.16"
},
"dependencies": {
"vue2-hammer": "^2.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.15",
"@vue/cli-plugin-eslint": "^3.0.0-beta.15",
"@vue/cli-plugin-unit-mocha": "^3.0.0-beta.15",
"@vue/cli-service": "^3.0.0-beta.15",
"@vue/test-utils": "^1.0.0-beta.16",
"chai": "^4.1.2",
"lint-staged": "^6.0.0",
"node-sass": "^4.9.4",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.16"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}