-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
{
"name": "superwstest",
"version": "2.0.4",
"description": "supertest with added WebSocket capabilities",
"files": [
"build/**/*",
"src/**/*",
"index.d.ts",
"!**/.DS_Store"
],
"main": "build/superwstest.js",
"module": "src/superwstest.mjs",
"types": "index.d.ts",
"scripts": {
"format": "prettier --write .",
"test": "lean-test test --parallel-suites && rollup --config rollup.config.mjs && test/run-package.sh && prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidje13/superwstest.git"
},
"keywords": [
"test",
"testing",
"supertest",
"superagent",
"ws",
"WebSocket",
"WebSockets"
],
"author": "David Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidje13/superwstest/issues"
},
"homepage": "https://github.com/davidje13/superwstest#readme",
"dependencies": {
"@types/supertest": "*",
"@types/ws": "7.x || 8.x",
"ws": "7.x || 8.x"
},
"peerDependencies": {
"supertest": "*"
},
"peerDependenciesMeta": {
"supertest": {
"optional": true
}
},
"devDependencies": {
"lean-test": "2.x",
"prettier": "3.3.2",
"rollup": "4.x"
}
}