smartsocket/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2016-08-06 21:27:53 +00:00
{
2019-01-30 09:55:16 +00:00
"name": "@pushrocks/smartsocket",
2021-01-28 01:39:24 +00:00
"version": "1.2.6",
2019-01-30 23:46:42 +00:00
"description": "easy and secure websocket communication",
2020-09-24 18:04:11 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-08-06 21:27:53 +00:00
"scripts": {
2020-09-24 18:03:01 +00:00
"test": "(tstest test/)",
2020-09-29 08:35:26 +00:00
"build": "(tsbuild --web && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)"
2016-08-06 21:27:53 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartsocket.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartsocket/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartsocket#README",
"dependencies": {
2020-09-24 18:03:01 +00:00
"@apiglobal/typedrequest-interfaces": "^1.0.15",
2020-09-29 17:21:08 +00:00
"@pushrocks/isohash": "^1.0.2",
"@pushrocks/isounique": "^1.0.4",
2020-12-16 02:20:28 +00:00
"@pushrocks/lik": "^4.0.20",
2020-09-24 18:03:01 +00:00
"@pushrocks/smartdelay": "^2.0.10",
2020-12-16 02:20:28 +00:00
"@pushrocks/smartenv": "^4.0.16",
2021-01-23 06:03:54 +00:00
"@pushrocks/smartexpress": "^3.0.100",
2021-01-28 01:30:27 +00:00
"@pushrocks/smartjson": "^4.0.5",
2020-09-24 18:03:01 +00:00
"@pushrocks/smartlog": "^2.0.39",
2020-12-16 02:20:28 +00:00
"@pushrocks/smartpromise": "^3.1.3",
2020-09-24 18:03:01 +00:00
"@pushrocks/smartrx": "^2.0.19",
2021-01-23 06:03:54 +00:00
"@pushrocks/smarttime": "^3.0.38",
2021-01-28 01:30:27 +00:00
"@types/socket.io": "^2.1.13",
2021-01-23 06:03:54 +00:00
"@types/socket.io-client": "^1.4.35",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0"
2016-08-07 12:58:20 +00:00
},
"devDependencies": {
2020-09-24 18:03:01 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
2020-12-16 02:20:28 +00:00
"@gitzone/tstest": "^1.0.52",
2021-01-28 01:30:27 +00:00
"@pushrocks/tapbundle": "^3.2.10",
2021-01-23 06:03:54 +00:00
"@types/node": "^14.14.22",
2020-09-24 18:03:01 +00:00
"tslint": "^6.1.3",
2019-04-26 15:35:15 +00:00
"tslint-config-prettier": "^1.18.0"
},
2019-08-12 16:16:25 +00:00
"private": false,
"files": [
2020-09-24 18:04:11 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-12 16:16:25 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-24 18:04:11 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-12 16:16:25 +00:00
]
2021-01-28 01:31:43 +00:00
}