-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.37 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
{
"name": "superwstest",
"version": "3.0.0",
"private": true,
"description": "supertest with added WebSocket capabilities",
"main": "./superwstest.cjs",
"module": "./superwstest.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./superwstest.mjs",
"default": "./superwstest.cjs"
}
},
"scripts": {
"format": "prettier --write .",
"test": "lean-test test --parallel-suites && test/build.sh && test/run-package.sh && prettier --check .",
"dopublish": "test/build.sh && npm publish package.tgz"
},
"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/ws": "7.x || 8.x",
"ws": "7.x || 8.x"
},
"peerDependencies": {
"@types/supertest": "*",
"supertest": "*"
},
"peerDependenciesMeta": {
"@types/supertest": {
"optional": true
},
"supertest": {
"optional": true
}
},
"devDependencies": {
"lean-test": "2.x",
"prettier": "3.8.3",
"rollup": "4.x"
}
}