-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.08 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
78
79
80
81
82
83
{
"name": "e-socket-udp",
"version": "0.3.3",
"description": "Enriched (with features) UDP Socket and Client. Encryption. Big data. CJS & ESM",
"main": "cjs/index.js",
"module": "index.js",
"exports": {
".": {
"require": "./cjs/index.js",
"default": "./index.js"
}
},
"files": [
"/cjs/index.js",
"/cjs/package.json",
"/src",
"index.d.ts",
"index.js",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "esbuild ./index.js --bundle --packages=external --format=cjs --platform=node --target=node16 --outdir='./cjs'",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"push-release": "git push --follow-tags origin master",
"prettify": "prettier --write -u './*.js' './**/*.js' !./cjs/index.js",
"test": "standard && npm run test:esm && npm run test:cjs",
"test:esm": "node tests/index.js",
"test:cjs": "node cjs/test.js",
"fix": "npm run prettify && standard --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JerryCauser/e-socket-udp.git"
},
"keywords": [
"udp",
"udp socket",
"udp encrypted",
"aes-256-ctr",
"udp stream",
"encryption",
"encrypted",
"udp client"
],
"license": "MIT",
"type": "module",
"author": "Artem Abzanov",
"bugs": {
"url": "https://github.com/JerryCauser/e-socket-udp/issues"
},
"homepage": "https://github.com/JerryCauser/e-socket-udp#readme",
"dependencies": {
"socket-udp": "^0.4.4"
},
"devDependencies": {
"@types/node": "^18.11.18",
"esbuild": "^0.16.16",
"husky": "^8.0.3",
"prettier": "^2.8.2",
"standard": "^17.0.0",
"standard-version": "^9.5.0"
},
"types": "./types/index.d.ts",
"eslintConfig": {
"extends": [
"eslint:recommended",
"standard"
]
},
"eslintIgnore": [
"cjs/index.js",
"*.d.ts"
]
}