-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "viewprt",
"version": "4.2.0",
"description": "A tiny, dependency-free, high performance viewport position & intersection observation tool",
"author": "Garth Poitras <[email protected]>",
"license": "MIT",
"main": "dist/umd/viewprt.js",
"module": "dist/es/viewprt.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gpoitch/viewprt.git"
},
"keywords": [
"viewport",
"observer",
"scroll",
"in-view",
"viewability",
"lazy-load",
"infinite-scroll"
],
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build-test": "NODE_ENV=test rollup -c",
"test": "npm run clean && npm run build-test && flt",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist & rm -f .*cache",
"demo": "open demos/index.html"
},
"devDependencies": {
"flt": "^0.34.0",
"puppeteer": "^5.4.1",
"rollup": "^2.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}