forked from joshwnj/react-visibility-sensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
{
"name": "vue-visibility-sensor",
"version": "0.3.0",
"description": "Sensor component for Vue that notifies you when it goes in or out of the window viewport.",
"main": "visibility-sensor.vue",
"files": [
"visibility-sensor.vue",
"index.d.ts"
],
"scripts": {
"example": "rm -rf example/dist && webpack --env=example",
"publish-gh-pages": "npm run example && ./bin/publish-gh-pages",
"test": "webpack --env=test && karma start --single-run"
},
"keywords": [
"vue",
"vue-component",
"visibility",
"visibility sensor"
],
"author": "AkatQuas",
"license": "MIT",
"peerDependencies": {
"vue": ">=2.5.0",
"vue-template-compiler": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"gh-pages": "^2.0.1",
"husky": "^3.0.1",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"lint-staged": "^9.2.1",
"mocha": "^6.2.0",
"prettier": "1.18.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"uglify-js": "^3.6.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
},
"repository": {
"type": "git",
"url": "https://github.com/AkatQuas/vue-visibility-sensor.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}