-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 949 Bytes
/
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
{
"name": "karma-websocket-server",
"version": "1.0.0",
"description": "Karma plugin to create a websocket server for unit tests",
"main": "index.js",
"scripts": {
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/weblogixx/karma-websocket-server.git"
},
"keywords": [
"karma-plugin",
"websocket-server",
"websocket",
"ws",
"mocking"
],
"author": "Christian Schilling ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/weblogixx/karma-websocket-server/issues"
},
"homepage": "https://github.com/weblogixx/karma-websocket-server#readme",
"dependencies": {
"websocket": "^1.0.22"
}
}