-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "content-observer",
"version": "1.0.2",
"description": "Watches targets position in viewport using IntersectionObserver - similar to menuspy",
"main": "src/index.js",
"module": "src/index.js",
"scripts": {
"build": "webpack --config webpack.prod.js && cp ./dist/main.js ./docs/main.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"publish": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/tflx/content-observer"
},
"keywords": [
"javascript",
"vanilla",
"viewport",
"intersection",
"observer",
"content",
"intersectionobserver",
"menuspy",
"scroll",
"scrollspy"
],
"author": "Torben Larsen",
"license": "MIT",
"homepage": "http://torbenlarsen.com",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}