-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.22 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
52
53
54
55
56
57
58
{
"name": "@lightningkite/rxjs-plus",
"version": "1.0.0",
"description": "RxJs tools for binding data to HTML elements",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"uuid": "^8.3.2",
"@types/uuid": "^8.3.3"
},
"peerDependencies": {
"rxjs": "7.x"
},
"optionalDependencies": {
"firebase": "^9.6.7"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"rxjs": "7.4.0",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4"
},
"scripts": {
"prepack": "tsc",
"build": "tsc",
"test": "jest --env=node --colors --coverage test"
},
"author": "Lightning Kite",
"repository": {
"type": "git",
"url": "git+https://github.com/lightningkite/rxjs-plus.git"
},
"keywords": [
"rx",
"dom"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lightningkite/rxjs-plus/issues"
},
"homepage": "https://github.com/lightningkite/rxjs-plus#readme",
"files": [
"package.json",
"tsconfig.json",
"jsx-runtime.js",
"jsx-runtime.d.ts",
"fcm.d.ts",
"fcm.js",
"index.js",
"index.d.ts",
"index.scss",
"dist",
"src/**/*.ts.yaml",
"src/**/*ts.fqnames"
]
}