forked from clux/sdp-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.32 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
{
"name": "@bengreenier/sdp-transform",
"description": "A simple parser/writer for the Session Description Protocol with ESM support",
"author": "Ben Greenier",
"type": "module",
"publishConfig": {
"access": "public"
},
"contributors": [
"Eirik Albrigtsen <sszynrae@gmail.com>"
],
"version": "0.1.1",
"repository": {
"type": "git",
"url": "bengreenier/sdp-transform"
},
"keywords": [
"sdp",
"webrtc",
"serializer",
"esm"
],
"main": "./dist/lib/index.js",
"bin": {
"sdp-verify": "./dist/checker.js"
},
"files": [
"./dist"
],
"scripts": {
"build": "npx tsc -p tsconfig.lib.json",
"lint": "eslint .",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"eslint": "^5.10.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.[tj]sx?$": [
"ts-jest",
{
"useESM": true,
"tsconfig": "./tsconfig.spec.json"
}
]
}
},
"bugs": {
"url": "https://github.com/bengreenier/sdp-transform/issues"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}