-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.73 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
65
66
67
68
{
"name": "@rxstack/platform-callbacks",
"version": "0.8.0",
"description": "RxStack platform specific middleware",
"private": false,
"author": "Nikolay Georgiev <symfonist@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rxstack/platform-callbacks.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"rxstack",
"platform"
],
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"clean": "rm -rf dist",
"eslint": "eslint src/**/*.ts",
"jest": "jest --collect-coverage --reporter=lcov",
"test": "npm run eslint && npm run jest"
},
"peerDependencies": {
"@rxstack/core": "^0.8",
"@rxstack/platform": "^0.8",
"@rxstack/security": "^0.8",
"@rxstack/utils": "^0.8"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"injection-js": "^2.4.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.6",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.10.0"
},
"bugs": {
"url": "https://github.com/rxstack/platform-callbacks/issues"
},
"homepage": "https://github.com/rxstack/platform-callbacks",
"files": [
"dist",
"README.md",
"LICENSE"
]
}