-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 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
{
"name": "@olime/cq-ch",
"version": "1.0.0",
"description": "CQC (Command Query Channel) for interaction between micro services in browser",
"browser": "es/index.js",
"main": "es/index.js",
"author": "Dmitry Vizgin <dvzphp@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint",
"test": "NODE_ENV=test jest --coverage",
"build": "rm -rf ./es && tsc --project tsconfig.build.json",
"build:example-with-toolkit": "cd ./examples/simpliest-with-toolkit/ && npm i && npm run build",
"build:example-simpliest": "cd ./examples/simpliest/ && npm i && npm run build",
"build:examples": "npm run build && npm run build:example-simpliest && npm run build:example-with-toolkit",
"prettier": "prettier --write \"./src/**/*.ts\" --loglevel error",
"type-check": "tsc --noEmit -p ."
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/node": "^7.29.0",
"@babel/plugin-external-helpers": "^7.27.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.29.0",
"@swc/core": "^1.15.11",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"codecov": "^3.8.3",
"core-js": "^3.48.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.13.0",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^5.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OliMe/cq-ch.git"
},
"bugs": {
"url": "https://github.com/OliMe/cq-ch/issues"
},
"homepage": "https://github.com/OliMe/cq-ch#readme"
}