-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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": "@paddls/rxjs-common",
"version": "2.2.0",
"description": "A collection of useful RxJS operators",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/paddls/rxjs-common"
},
"scripts": {
"build": "npm run lint && tsc",
"build:watch": "tsc -w",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch"
},
"author": "Romain MARTINEAU, Oscar GUERIN",
"license": "MIT",
"peerDependencies": {
"rxjs": "^6.5.4 || ^7.0.0",
"typescript": ">= 3.7.3"
},
"dependencies": {
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isfunction": "^3.0.9"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/lodash.flatten": "^4.4.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.isfunction": "^3.0.7",
"@types/node": "^12.12.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.30.0",
"jest": "^29.7.0",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}