This repository has been archived by the owner on Aug 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "battery-indicator-element",
"version": "1.1.6",
"description": "Battery status indicator custom element.",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"start": "webpack serve --mode development --open",
"start:build": "serve dist/",
"build": "webpack --mode production",
"build:stats": "webpack --mode production --profile --json > stats.json",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamvig/battery-indicator-element.git"
},
"author": "Adam Vigneaux <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamvig/battery-indicator-element/issues"
},
"homepage": "https://github.com/adamvig/battery-indicator-element#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.7.7",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-loader": "^8.0.6",
"babel-plugin-template-html-minifier": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-lit": "^1.1.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "*",
"fast-async": "^6.3.8",
"html-webpack-plugin": "^5.2.0",
"lit-element": "^2.2.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.1",
"typescript": "^4.0.2",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {}
}