-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "vue-animate",
"version": "0.0.4",
"description": "LESS cross-browser animation library, for use with Vue.js. Ported from Animate.css.",
"author": {
"name": "Hayden Bickerton",
"email": "[email protected]"
},
"homepage": "https://github.com/haydenbbickerton/vue-animate",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/haydenbbickerton/vue-animate.git"
},
"bugs": {
"url": "https://github.com/haydenbbickerton/vue-animate/issues"
},
"keywords": [
"less",
"animate",
"animate.css",
"vue",
"vue.js",
"transition",
"vue-animate",
"css"
],
"files": [
"dist/vue-animate.css",
"dist/vue-animate.min.css",
"src"
],
"devDependencies": {
"less": "^2.4.0",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.0"
},
"scripts": {
"build": "lessc --autoprefix='> 5%' src/vue-animate.less > dist/vue-animate.css && lessc --autoprefix='> 5%' --clean-css='--compatibility=ie8 --advanced' src/vue-animate.less > dist/vue-animate.min.css"
}
}