-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
82 lines (82 loc) · 2.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@lottiefiles/vue-lottie-player",
"version": "1.1.0",
"description": "Lottie player wrapper for Vue.js by LottieFiles",
"scripts": {
"prebuild": "node -p \"'<script>export const LOTTIE_VUE_PLAYER_VERSION = ' + JSON.stringify(require('./package.json').version) + ';</script>'\" > src/versions.vue",
"build": "vue-cli-service build --target lib --name vue-lottie-player ./src/index.js && rm ./dist/demo.html",
"build:dev": "vue-cli-service build --watch --inline-vue --target lib --name vue-lottie-player ./src/index.js && rm ./dist/demo.html",
"build-with-coverage": "CODE_COVERAGE=true vue-cli-service build --target lib --name vue-lottie-player ./src/index.js && rm ./dist/demo.html",
"release": "semantic-release",
"run-tests": "yarn run build-with-coverage && yarn run start-cypress",
"postrun-tests": "kill $(lsof -t -i:8080)",
"start-and-run-tests": "yarn run build-with-coverage && yarn run serve-app && BACK_PID=$! && wait $BACK_PID && yarn run start-cypress;",
"poststart-and-run-tests": "kill $(lsof -t -i:8080)",
"serve-app": "cd example && yarn && yarn run serve &",
"start-cypress": "yarn run cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LottieFiles/lottie-vue.git"
},
"main": "dist/vue-lottie-player.common.js",
"files": [
"dist"
],
"dependencies": {
"@lottiefiles/lottie-player": "^1.6.2",
"vue": "^2.6.12"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@cypress/code-coverage": "^3.9.12",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@vue/babel-preset-app": "^5.0.1",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.0.11",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "9.5.1",
"husky": ">=4",
"lint-staged": ">=10",
"rollup": "^2.50.1",
"rollup-plugin-vue": "^6.0.0",
"semantic-release": "^17.4.2",
"vue-clickaway": "^2.2.2",
"vue-template-compiler": "^2.6.12"
},
"contributors": [
{
"name": "Mazin",
"email": "[email protected]"
},
{
"name": "Hunain",
"email": "[email protected]"
},
{
"name": "Karam",
"email": "[email protected]"
}
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": [
"vue",
"lottie",
"lottiefiles"
],
"license": "MIT"
}