-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "vue-scrollama",
"version": "2.0.6",
"description": "Easy scroll driven interactions (aka scrollytelling) with Vue + Scrollama",
"repository": {
"type": "git",
"url": "git+https://github.com/shenoy/vue-scrollama.git"
},
"keywords": [
"vue",
"scrollama",
"scroll",
"scroll-driven",
"scrollytelling"
],
"author": "Vignesh Shenoy <vignesh.shenoy@gmail.com>",
"bugs": {
"url": "https://github.com/shenoy/vue-scrollama/issues"
},
"license": "MIT",
"scripts": {
"build": "rollup -c --environment BUILD:production"
},
"files": [
"dist/*",
"src/*",
"*.json"
],
"main": "./dist/vue-scrollama.umd.js",
"module": "./dist/vue-scrollama.esm.js",
"unpkg": "./dist/vue-scrollama.min.js",
"browser": {
"./sfc": "src/Scrollama.vue"
},
"dependencies": {
"scrollama": "^2.2.2"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"postcss": "^8.2.13",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
}
}