forked from vitalets/websocket-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.77 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
65
66
{
"name": "websocket-as-promised",
"version": "2.1.0",
"description": "A WebSocket client library providing Promise-based API for connecting, disconnecting and messaging with server",
"author": {
"name": "Vitaliy Potapov",
"email": "noginsk@rambler.ru"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/websocket-as-promised.git"
},
"engines": {
"node": ">=6"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"types",
"README.md"
],
"scripts": {
"lint": "eslint src test",
"test": "mocha test/setup.js test/specs",
"test-installed": "node scripts/install-local && LIB_PATH=../.installed/node_modules/websocket-as-promised npm t",
"test-ci": "npm run lint && npm test && npm run test-installed",
"docs": "node scripts/docs",
"prerelease": "npm run lint && npm test && npm run test-installed",
"release": "npm version $VER && npm publish",
"postrelease": "git push --follow-tags --no-verify",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release",
"prepare": "husky install"
},
"lint-staged": {
"{src,test}/**/*.js": "eslint"
},
"dependencies": {
"chnl": "^1.2.0",
"promise-controller": "^1.0.0",
"promise.prototype.finally": "^3.1.2",
"promised-map": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-plugin-mocha": "^8.0.0",
"get-port": "^5.1.1",
"husky": "^8.0.0",
"install-local": "^3.0.1",
"jsdoc-to-markdown": "^6.0.1",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"websocket": "^1.0.33",
"ws": "^7.4.2"
},
"keywords": [
"websocket",
"websockets",
"ws",
"promise",
"promise-api",
"promises"
],
"license": "MIT"
}