-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "rx-lit",
"version": "1.0.1",
"description": "Base class for LitElement that makes working with Observables easier.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"build:package": "yarn build && rimraf dist/**/*spec*",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test:ci": "karma start",
"test": "yarn build && karma start"
},
"author": "Adrian Faciu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:adrianfaciu/rx-lit.git"
},
"keywords": [
"LitElement",
"RxJs",
"Observable"
],
"files": [
"dist"
],
"homepage": "https://github.com/adrianfaciu/rx-lit",
"devDependencies": {
"@open-wc/testing": "^2.5.16",
"@open-wc/testing-karma": "^3.3.19",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"karma": "^5.0.5",
"lit-element": "^2.3.1",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"typescript": "^3.8.3"
},
"peerDependencies": {
"lit-element": "2.x",
"rxjs": "6.x"
}
}