-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 852 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
34
{
"name": "netify.js",
"description": "Netify is a Node.js module that allows you to easily create a TCP server and client.",
"version": "0.0.14",
"scripts": {
"lint": "yarn eslint ./src && yarn tslint ./src/index.d.ts"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"author": "Sxip",
"license": "MIT",
"homepage": "https://github.com/Sxip/netify.js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Sxip/netify.js.git"
},
"bugs": {
"url": "https://github.com/Sxip/netify.js/issues"
},
"keywords": [
"node",
"server",
"client"
],
"devDependencies": {
"dts-gen": "^0.5.8",
"eslint": "^6.2.2",
"tslint-config-typings": "^0.3.1",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/node": "^12.7.1"
}
}