-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "lit-element-effector",
"version": "0.2.2",
"description": "Mixin to attach an Effector Store to lit-element",
"main": "index.js",
"types": "src/index.ts",
"sideEffects": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/panManfredini/lit-element-effector.git"
},
"homepage": "https://github.com/panManfredini/lit-element-effector",
"bugs": {
"url": "https://github.com/panManfredini/lit-element-effector/issues"
},
"author": "pan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "tsc && web-test-runner",
"test:watch": "web-test-runner --watch"
},
"keywords": [
"web-component",
"state",
"app-state",
"lit-element",
"custom-element",
"effector"
],
"devDependencies": {
"@open-wc/semantic-dom-diff": "^0.19.0",
"@open-wc/testing": "^2.5.29",
"@web/test-runner": "^0.9.5",
"effector": "^21.5.0",
"lit-element": "^2.4.0",
"typescript": "^4.0.3"
},
"dependencies": {}
}