-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "viewport-trigger",
"version": "2.0.2",
"description": "Perfomant, light library in pure JS to trigger callback when elements exit or leave viewport, using IntersectionObserver API",
"homepage": "https://github.com/rodynenko/viewport-trigger",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint",
"build": "cross-env NODE_ENV=production node build.js",
"build:dev": "cross-env NODE_ENV=development node watch.js",
"dev": "npm-run-all --parallel serve build:dev",
"serve": "browser-sync start --server \".\" --index \"demo/index.html\" --files \"demo\" --files \"dist\" --port 3000"
},
"author": {
"name": "Taras Rodynenko"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/rodynenko/viewport-trigger.git"
},
"bugs": {
"url": "https://github.com/rodynenko/viewport-trigger/issues"
},
"files": [
"dist/"
],
"keywords": [
"viewport",
"observer",
"trigger"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@rollup/plugin-babel": "^5.3.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"browser-sync": "^2.23.6",
"chokidar": "^3.5.1",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.9.0",
"npm-run-all": "^4.1.2",
"rollup": "^2.47.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2"
}
}