smartsocket/package.json

63 lines
1.7 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",
2022-01-20 17:38:18 +00:00
"version": "1.2.22",
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/)",
2022-01-19 17:36:13 +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",
2022-01-19 15:37:45 +00:00
"@pushrocks/isounique": "^1.0.5",
2022-01-18 16:10:46 +00:00
"@pushrocks/lik": "^5.0.0",
"@pushrocks/smartdelay": "^2.0.13",
2020-12-16 02:20:28 +00:00
"@pushrocks/smartenv": "^4.0.16",
2022-01-18 16:10:46 +00:00
"@pushrocks/smartexpress": "^3.0.108",
2021-01-28 12:39:31 +00:00
"@pushrocks/smartjson": "^4.0.6",
2022-01-18 16:10:46 +00:00
"@pushrocks/smartlog": "^2.0.44",
"@pushrocks/smartpromise": "^3.1.6",
2020-09-24 18:03:01 +00:00
"@pushrocks/smartrx": "^2.0.19",
2022-01-18 16:10:46 +00:00
"@pushrocks/smarttime": "^3.0.43",
2022-01-19 17:06:39 +00:00
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1"
2016-08-07 12:58:20 +00:00
},
"devDependencies": {
2022-01-19 17:06:39 +00:00
"@gitzone/tsbuild": "^2.1.29",
2022-01-18 16:10:46 +00:00
"@gitzone/tsrun": "^1.2.18",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^3.2.15",
2022-01-19 15:37:45 +00:00
"@types/node": "^17.0.10",
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
]
2022-01-19 06:01:59 +00:00
}