-
Notifications
You must be signed in to change notification settings - Fork 281
/
package.json
45 lines (45 loc) · 1.42 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
{
"name": "vue-lottie",
"description": "Lottie Animation View for Vue",
"version": "0.2.1",
"author": "CHEN Qing",
"repository": {
"type": "git",
"url": "git+https://github.com/chenqingspring/vue-lottie.git"
},
"private": false,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"gh-pages": "git checkout gh-pages && git merge master --no-edit && npm run build && git add . && git commit -m 'chore: build demo' --allow-empty && git push && git checkout master",
"release": "git add package.json && git commit -m 'chore: bump version number' && standard-version --first-release && git push --follow-tags origin master && npm run build && npm publish && git checkout ."
},
"dependencies": {
"lottie-web": "^5.1.9"
},
"peerDependencies": {
"vue": "^2.5.16"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"standard-version": "^4.0.0",
"vue-loader": "^11.1.4",
"vue-lottie": "^0.1.0",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"main": "src/lottie.vue",
"keywords": [
"vue",
"lottie",
"vue-component",
"vue-animation"
],
"license": "MIT"
}