-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.77 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
{
"name": "lit-element-simple-context",
"version": "1.2.6",
"description": "Webcomponent lit-element-context following open-wc recommendations",
"author": "csabai <csaba.ivancza@gmail.com>",
"license": "MIT",
"main": "dist/context.js",
"module": "dist/context.js",
"homepage": "https://github.com/icsaba/lit-element-context",
"repository": "https://github.com/icsaba/lit-element-context.git",
"scripts": {
"start": "web-dev-server",
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"build": "tsc"
},
"files": [
"dist",
"global.d.ts"
],
"devDependencies": {
"@open-wc/eslint-config": "^4.2.0",
"@open-wc/testing": "^3.2.0",
"@web/dev-server": "^0.1.8",
"@web/test-runner": "^0.17.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^4.3.8",
"jsdoc": "^4.0.2",
"lint-staged": "^10.5.4",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"prettier": "^3.0.0",
"redux-devtools-extension": "^2.13.9",
"sinon": "^14.0.0",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"webcomponents",
"lit-element",
"context",
"state",
"store",
"lit-store",
"lit-context"
]
}