-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@preignition/lit-firebase",
"version": "0.5.0",
"description": "Webcomponent for interactig with Firebase, inspired by polymerfire, but based on lit-element",
"author": {
"name": "christophe geiser",
"email": "christophe@preignition.org"
},
"keywords": [
"lit-element",
"web-components",
"firebase",
"database",
"realtime"
],
"license": "MIT",
"main": "index.js",
"module": "index.js",
"scripts": {
"start": "es-dev-server -v",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots",
"test:bs": "karma start karma.bs.config.js --coverage"
},
"dependencies": {
"dompurify": "^2.0.15",
"firebase": "^8.6.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"prettier": "^1.19.1",
"pwa-helpers": "^0.9.1"
},
"devDependencies": {
"@open-wc/eslint-config": "^2.0.4",
"@open-wc/prettier-config": "^0.1.14",
"@open-wc/testing": "^2.5.10",
"@open-wc/testing-karma": "^3.3.11",
"@open-wc/testing-karma-bs": "^1.3.55",
"deepmerge": "^3.3.0",
"es-dev-server": "^1.46.1",
"eslint": "^6.8.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": "@open-wc/prettier-config",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}