-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.26 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "observable-socket",
"version": "8.0.6",
"description": "Wraps a websocket in an Observable.",
"browser": "dist/browser.min.js",
"main": "dist/cjs.js",
"module": "dist/esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:types && npm run build:module",
"build:module": "rollup -c",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"test": "npm run util:lint && npm run util:type-check && jest",
"util:lint": "tslint -p tsconfig.json -c tslint.json",
"util:type-check": "tsc -p ./tsconfig.json --noEmit"
},
"jest": {
"preset": "ts-jest",
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"keywords": [
"observable",
"rx",
"rxjs",
"socket",
"websocket",
"ws"
],
"bugs": {
"url": "https://github.com/killtheliterate/observable-socket/issues"
},
"contributors": [
"Garrett Dawson <killtheliterate@gmail.com> (http://thedrearlight.com/)",
"Talon Poole <talon@theghostin.me> (http://theghostin.me)"
],
"homepage": "https://github.com/killtheliterate/observable-socket",
"repository": {
"type": "git",
"url": "https://github.com/killtheliterate/observable-socket.git"
},
"license": "MIT",
"dependencies": {
"@types/ws": "^8.2.2",
"debug": "^4.3.2",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.10.1",
"@types/debug": "4.1.12",
"@types/jest": "^26.0.24",
"cross-env": "^7.0.2",
"jest": "^24.9.0",
"rollup": "2.79.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-watch": "^4.3.1",
"semantic-release": "^24.0.0",
"semantic-release-npm-github-publish": "^1.5.1",
"ts-jest": "^24.3.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^5.0.2",
"typescript-tslint-plugin": "^1.0.1",
"ws": "8.18.0"
}
}