-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "infinite-scroll-component",
"type": "module",
"version": "0.0.4",
"description": "A little web component for infinite scrolling.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.15.0",
"@rollup/plugin-babel": "5.3.0",
"@types/jest": "27.0.1",
"http-server": "13.0.1",
"jest": "27.1.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.56.3",
"rollup-plugin-terser": "7.0.2"
},
"scripts": {
"start": "npm-run-all clean --parallel start:server start:dev",
"start:server": "http-server -p 8080 ./docs",
"start:dev": "npm run build:dev -- --watch",
"build": "npm-run-all clean --parallel build:*",
"build:dev": "rollup --config rollup/rollup.config.dev.js",
"build:prod": "rollup --config rollup/rollup.config.prod.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "jest"
},
"author": "Richie Casto (https://github.com/rcasto)",
"homepage": "https://github.com/rcasto/infinite-scroll-component#readme",
"repository": {
"type": "git",
"url": "https://github.com/rcasto/infinite-scroll-component.git"
},
"keywords": [
"infinite-scroll",
"scroll",
"scrolling",
"web-component"
],
"license": "MIT",
"jest": {
"testEnvironment": "jsdom"
}
}