qawolf-socket-npm 1.0.1 → 1.0.2
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.
- package/README.md +14 -2
- package/index.js +9 -4
- package/package.json +29 -3
package/README.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# qawolf-socket-npm
|
|
2
|
-
Version: 1.0.
|
|
3
|
-
Updated: 2025-07-
|
|
2
|
+
Version: 1.0.2
|
|
3
|
+
Updated: 2025-07-28T23:13:52.406Z
|
|
4
4
|
## Installation
|
|
5
5
|
```bash
|
|
6
6
|
npm install qawolf-socket-npm
|
|
7
7
|
```
|
|
8
|
+
## Usage
|
|
9
|
+
```javascript
|
|
10
|
+
const qaWolf = require('qawolf-socket-npm');
|
|
11
|
+
console.log(qaWolf.test());
|
|
12
|
+
console.log('Version:', qaWolf.version);
|
|
13
|
+
```
|
|
14
|
+
## Dependencies
|
|
15
|
+
- lodash: Utility functions
|
|
16
|
+
- axios: HTTP client
|
|
17
|
+
- ws: WebSocket client
|
|
18
|
+
- uuid: UUID generation
|
|
19
|
+
- moment: Date formatting
|
package/index.js
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
// QA Wolf Test Package v1.0.
|
|
2
|
+
// QA Wolf Test Package v1.0.2
|
|
3
3
|
module.exports = {
|
|
4
|
-
version: '1.0.
|
|
4
|
+
version: '1.0.2',
|
|
5
5
|
test: () => 'QA Wolf test passed!',
|
|
6
|
-
timestamp: '2025-07-
|
|
7
|
-
build:
|
|
6
|
+
timestamp: '2025-07-28T23:13:52.406Z',
|
|
7
|
+
build: 1753744432406,
|
|
8
|
+
info: {
|
|
9
|
+
name: 'qawolf-socket-npm',
|
|
10
|
+
description: 'QA Wolf automation package',
|
|
11
|
+
dependencies: ['lodash', 'axios', 'ws', 'uuid', 'moment']
|
|
12
|
+
}
|
|
8
13
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qawolf-socket-npm",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "QA Wolf automation testing package",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "QA Wolf automation testing package with real-world dependencies",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Test passed\"",
|
|
8
|
+
"start": "node index.js"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"qa",
|
|
12
|
+
"testing",
|
|
13
|
+
"automation",
|
|
14
|
+
"playwright",
|
|
15
|
+
"websocket"
|
|
16
|
+
],
|
|
6
17
|
"author": "QA Wolf Team",
|
|
7
|
-
"license": "MIT"
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"lodash": "^4.17.21",
|
|
21
|
+
"axios": "^1.6.0",
|
|
22
|
+
"ws": "^8.14.0",
|
|
23
|
+
"uuid": "^9.0.1",
|
|
24
|
+
"moment": "^2.29.4"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"jest": "^29.7.0"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/qawolf/socket-npm.git"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://qawolf.com"
|
|
8
34
|
}
|