wspromisify 2.4.2 → 2.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +94 -96
package/package.json CHANGED
@@ -1,96 +1,94 @@
1
- {
2
- "author": {
3
- "name": "Michael Akiliev"
4
- },
5
- "bugs": {
6
- "url": "https://github.com/houd1ni/WebsocketPromisify/issues"
7
- },
8
- "bundleDependencies": [],
9
- "deprecated": false,
10
- "description": "Wraps your WebSockets into Promise-based class with full d.ts typings on client & server",
11
- "homepage": "https://github.com/houd1ni/WebsocketPromisify#readme",
12
- "keywords": [
13
- "WebSockets",
14
- "WS",
15
- "Promise",
16
- "Socket",
17
- "REST",
18
- "Ajax",
19
- "Easy",
20
- "realtime",
21
- "Middleware",
22
- "JSON",
23
- "Data",
24
- "transport",
25
- "API",
26
- "async"
27
- ],
28
- "license": "MIT",
29
- "main": "dist/ws.js",
30
- "module": "dist/ws.esm.js",
31
- "name": "wspromisify",
32
- "repository": {
33
- "type": "git",
34
- "url": "git+https://github.com/houd1ni/WebsocketPromisify.git"
35
- },
36
- "scripts": {
37
- "lint": "tslint src/*.ts",
38
- "test": "npm run gentypes && npm run prod:es && ava",
39
- "test:report": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
40
- "test:lazy": "ava",
41
- "gentypes": "dts-bundle-generator --no-check -o dist/bundle.d.ts src/WS.ts",
42
- "dev": "cross-env NODE_ENV=development BUILD=es rollup -c",
43
- "prod:cjs": "cross-env NODE_ENV=production BUILD=cjs rollup -c",
44
- "prod:es": "cross-env NODE_ENV=production BUILD=es rollup -c",
45
- "prod": "npm run gentypes && npm run prod:es && npm run prod:cjs",
46
- "all": "npm run dev && npm run prod"
47
- },
48
- "version": "2.4.2",
49
- "type": "module",
50
- "exports": {
51
- ".": {
52
- "import": "./dist/bundle.mjs",
53
- "require": "./dist/bundle.cjs"
54
- }
55
- },
56
- "ava": {
57
- "files": [
58
- "./test/specs/*.js"
59
- ],
60
- "failFast": true,
61
- "timeout": "2m",
62
- "nodeArguments": [
63
- "--experimental-specifier-resolution=node"
64
- ]
65
- },
66
- "devDependencies": {
67
- "@babel/core": "^7.20.12",
68
- "@babel/polyfill": "^7.12.1",
69
- "@babel/register": "^7.18.9",
70
- "@rollup/plugin-commonjs": "^23.0.3",
71
- "@rollup/plugin-node-resolve": "^15.0.1",
72
- "@rollup/plugin-replace": "^5.0.1",
73
- "@rollup/plugin-terser": "^0.1.0",
74
- "@types/node": "^18.11.18",
75
- "@types/ws": "^8.5.4",
76
- "ava": "^5.1.1",
77
- "axios": "^1.2.2",
78
- "codecov": "^3.8.3",
79
- "cross-env": "^7.0.3",
80
- "dts-bundle-generator": "^7.1.0",
81
- "express": "^4.18.2",
82
- "nyc": "^15.1.0",
83
- "randomatic": "^3.1.1",
84
- "rollup": "^3.10.0",
85
- "rollup-plugin-typescript2": "^0.34.1",
86
- "ts-node": "^10.9.1",
87
- "tslint": "^6.1.3",
88
- "typescript": "^4.9.4",
89
- "ws": "^8.12.0"
90
- },
91
- "types": "./dist/bundle.d.ts",
92
- "dependencies": {
93
- "pepka": "^1.0.0-beta.1",
94
- "zipnum": "^1.0.0"
95
- }
96
- }
1
+ {
2
+ "author": {
3
+ "name": "Michael Akiliev"
4
+ },
5
+ "bugs": {
6
+ "url": "https://github.com/houd1ni/WebsocketPromisify/issues"
7
+ },
8
+ "bundleDependencies": [],
9
+ "deprecated": false,
10
+ "description": "Wraps your WebSockets into Promise-based class with full d.ts typings on client & server",
11
+ "homepage": "https://github.com/houd1ni/WebsocketPromisify#readme",
12
+ "keywords": [
13
+ "WebSockets",
14
+ "WS",
15
+ "Promise",
16
+ "Socket",
17
+ "REST",
18
+ "Ajax",
19
+ "Easy",
20
+ "realtime",
21
+ "Middleware",
22
+ "JSON",
23
+ "Data",
24
+ "transport",
25
+ "API",
26
+ "async"
27
+ ],
28
+ "license": "MIT",
29
+ "name": "wspromisify",
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/houd1ni/WebsocketPromisify.git"
33
+ },
34
+ "scripts": {
35
+ "lint": "tslint src/*.ts",
36
+ "test": "npm run gentypes && npm run prod:es && ava",
37
+ "test:report": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
38
+ "test:lazy": "ava",
39
+ "gentypes": "dts-bundle-generator --no-check -o dist/bundle.d.ts src/WS.ts",
40
+ "dev": "cross-env NODE_ENV=development BUILD=es rollup -c",
41
+ "prod:cjs": "cross-env NODE_ENV=production BUILD=cjs rollup -c",
42
+ "prod:es": "cross-env NODE_ENV=production BUILD=es rollup -c",
43
+ "prod": "npm run gentypes && npm run prod:es && npm run prod:cjs",
44
+ "all": "npm run dev && npm run prod"
45
+ },
46
+ "version": "2.4.3",
47
+ "type": "module",
48
+ "exports": {
49
+ ".": {
50
+ "import": "./dist/bundle.mjs",
51
+ "require": "./dist/bundle.cjs"
52
+ }
53
+ },
54
+ "ava": {
55
+ "files": [
56
+ "./test/specs/*.js"
57
+ ],
58
+ "failFast": true,
59
+ "timeout": "2m",
60
+ "nodeArguments": [
61
+ "--experimental-specifier-resolution=node"
62
+ ]
63
+ },
64
+ "devDependencies": {
65
+ "@babel/core": "^7.20.12",
66
+ "@babel/polyfill": "^7.12.1",
67
+ "@babel/register": "^7.18.9",
68
+ "@rollup/plugin-commonjs": "^23.0.3",
69
+ "@rollup/plugin-node-resolve": "^15.0.1",
70
+ "@rollup/plugin-replace": "^5.0.1",
71
+ "@rollup/plugin-terser": "^0.1.0",
72
+ "@types/node": "^18.11.18",
73
+ "@types/ws": "^8.5.4",
74
+ "ava": "^5.1.1",
75
+ "axios": "^1.2.2",
76
+ "codecov": "^3.8.3",
77
+ "cross-env": "^7.0.3",
78
+ "dts-bundle-generator": "^7.1.0",
79
+ "express": "^4.18.2",
80
+ "nyc": "^15.1.0",
81
+ "randomatic": "^3.1.1",
82
+ "rollup": "^3.10.0",
83
+ "rollup-plugin-typescript2": "^0.34.1",
84
+ "ts-node": "^10.9.1",
85
+ "tslint": "^6.1.3",
86
+ "typescript": "^4.9.4",
87
+ "ws": "^8.12.0"
88
+ },
89
+ "types": "./dist/bundle.d.ts",
90
+ "dependencies": {
91
+ "pepka": "^1.0.0-beta.1",
92
+ "zipnum": "^1.0.0"
93
+ }
94
+ }