-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 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
{
"name": "lit-infinite-loading",
"version": "0.0.56",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/zzzgit/lit-infinite-loading"
},
"main": "src/component/InfiniteLoading.js",
"scripts": {
"clean": "rimraf built coverage .nyc_output",
"build": "npm run check && npm run clean && cross-env NODE_ENV=production BABEL_ENV=production webpack --mode=production --profile --progress --config ./build/webpack.config.prod.js",
"lint": "eslint \"./test/**\" \"./src/**\"",
"test": "npm run lint",
"commit": "git-cz",
"release": "standard-version",
"check": "echo check",
"dev": "npm run check && cross-env NODE_ENV=dev BABEL_ENV=develop webpack-dev-server --mode=development --profile --progress --open --inline --color --config ./build/webpack.config.dev.js"
},
"bugs": "https://github.com/zzzgit/lit-infinite-loading/issues",
"keywords": [
"lit-element",
"web-component"
],
"license": "LGPL-3.0-or-later",
"engines": {
"npm": ">=6.9.0",
"node": ">=10.0"
},
"author": "jonkee",
"dependencies": {
"lodash.throttle": "^4.1.1"
},
"peerDependencies":{
"lit-element": "^2.2.1"
},
"devDependencies": {
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-config-janus": "^1.0.48",
"eslint-plugin-array-func": "^3.1.3",
"eslint-plugin-lit": "^1.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-unicorn": "^8.0.2",
"html-webpack-plugin": "^5.5.0",
"file-loader": "^6.2.0",
"terser-webpack-plugin": "^1.4.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
}
}