-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
88 lines (88 loc) · 2.25 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
84
85
86
87
88
{
"name": "esl",
"version": "11.2.1",
"description": "Client and Server for FreeSwitch Event System",
"keywords": [
"freeswitch",
"event"
],
"author": {
"name": "Stéphane Alnet",
"email": "stephane@shimaore.net"
},
"repository": {
"type": "git",
"url": "git://gitlab.com/shimaore/esl.git"
},
"contributors": [
{
"name": "Paweł Pierścionek",
"email": "pawel@voiceworks.pl"
},
{
"name": "Akash Deep Verma",
"email": "akashdeep@flexydial.com"
},
{
"name": "Tobias Bieniek",
"email": "Tobias.Bieniek@gmx.de"
},
{
"name": "James Criscuolo",
"email": "james@onsip.com"
},
{
"name": "Guillermo López Leal",
"email": "willyaranda@gmail.com"
}
],
"type": "module",
"module": "esl.mjs",
"main": "esl.cjs",
"types": "./types/src/esl.d.ts",
"files": [
"esl.cjs",
"esl.mjs",
"./types/src/*.d.ts*"
],
"exports": {
"require": "./esl.cjs",
"import": "./esl.mjs",
"types": "./types/src/esl.d.ts"
},
"devDependencies": {
"@types/node": "20.11.0",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"ava": "6.0.1",
"esbuild": "0.19.11",
"eslint": "8.56.0",
"eslint-config-standard-with-typescript": "43.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"memdown": "6.1.1",
"nyc": "15.1.0",
"typescript": "5.3.3",
"ulidx": "2.2.1",
"uuid": "9.0.1"
},
"scripts": {
"build": "node build.mjs",
"prepublishOnly": "yarn install && yarn build && yarn syntax",
"prelint": "yarn syntax",
"lint": "eslint --fix src/*.ts test/*.ts",
"pretest": "yarn prepublishOnly",
"test": "nyc ava -c 1",
"test:optimize": "node --trace-deopt build/trace/benchmark.js | grep bailout",
"syntax": "tsc",
"test:live": "podman build --ulimit nofile=1048576:1048576 -f test/Dockerfile ."
},
"publishConfig": {
"tag": "latest"
},
"usage": "Test with podman build --ulimit nofile=1048576:1048576 -f test/Dockerfile .",
"ok": true,
"packageManager": "yarn@4.0.2+sha256.825003a0f561ad09a3b1ac4a3b3ea6207af2796d54f62a9420520915721f5186"
}