-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
56
57
58
59
60
61
62
63
64
{
"name": "wsclient-evented",
"version": "2.2.0",
"description": "Simple Websocket Client with Event support",
"main": "lib/index.js",
"files": [
"lib/index.js",
"dist/wsclientevented.js"
],
"scripts": {
"dist": "webpack",
"lint": "eslint ./lib",
"posttest": "npm run lint",
"start": "npm run dist",
"test": "NODE_ENV=test karma start",
"test:watch": "NODE_ENV=test karma start --autoWatch=true --singleRun=false",
"demo": "http-server ./dist",
"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/wsclient-evented.git"
},
"keywords": [
"websocket",
"websocket client",
"event"
],
"author": "Christian Schilling ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/weblogixx/wsclient-evented/issues"
},
"homepage": "https://github.com/weblogixx/wsclient-evented#readme",
"devDependencies": {
"@babel/core": "^7.13.0",
"@babel/preset-env": "^7.13.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"http-server": "^0.12.0",
"karma": "^5.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.0",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.0",
"karma-websocket-server": "^1.0.0",
"mocha": "^8.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"fbemitter": "^3.0.0"
}
}