-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
83 lines (83 loc) · 2.21 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
83
{
"name": "vue-kinesis",
"version": "1.3.3",
"description": "Easily create complexe interactive animations with Vue.js",
"author": {
"name": "Amine Bouyarmane",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service serve dev/serve.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"lint": "vue-cli-service lint",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"main": "dist/vue-kinesis.ssr.js",
"module": "dist/vue-kinesis.esm.js",
"browser": "dist/vue-kinesis.esm.js",
"unpkg": "dist/vue-kinesis.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-replace": "^2.4.2",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"minimist": "^1.2.5",
"rollup": "^2.51.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"engines": {
"node": ">=10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"keywords": [
"frontend",
"animation",
"interaction",
"vue",
"vue.js",
"parallax",
"mouse",
"hover",
"scroll",
"gyroscope",
"audio"
],
"licence": "MIT",
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Aminerman/vue-kinesis"
}
}