-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 933 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 933 Bytes
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
{
"name": "zeromq-reference-client",
"version": "1.0.0",
"description": "Typescript reference client for ZeroMQ",
"main": "lib/index.js",
"scripts": {
"version": "node -v",
"build": "rm -rf lib && tsc --pretty && npm run prettier",
"lint": "eslint --ext .ts src",
"prettier": "prettier --loglevel error --write './src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git@git.2nd.io:platform/zeromq-reference-client.git"
},
"author": "Second Spectrum",
"dependencies": {
"path": "^0.12.7",
"yargs": "^17.4.1",
"zeromq": "^5.2.8"
},
"devDependencies": {
"@types/node": "^17.0.25",
"@types/yargs": "^17.0.10",
"@types/zeromq": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}