-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.38 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-in-viewport-mixin",
"version": "3.1.0",
"description": "Vue 3 mixin to determine when a DOM element is visible in the client window",
"main": "index.js",
"scripts": {
"test": "cypress run",
"build": "coffee -ct index.coffee",
"version": "npm run build && git add -A",
"postversion": "git push --follow-tags && yarn storybook:deploy",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:deploy": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "https://github.com/BKWLD/vue-in-viewport-mixin.git"
},
"author": "info@bukwild.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/BKWLD/vue-in-viewport-mixin/issues"
},
"homepage": "https://github.com/BKWLD/vue-in-viewport-mixin#readme",
"peerDependencies": {
"vue": "3.x"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addons": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/storybook-deployer": "^2.8.12",
"@storybook/vue3": "^6.5.10",
"babel-loader": "^8.2.5",
"coffee-loader": "^4.0.0",
"coffeescript": "^2.7.0",
"cypress": "^3.2.0",
"intersection-observer": "^0.12.2",
"vue": "^3.2.38",
"vue-loader": "^17.0.0"
},
"dependencies": {}
}