forked from team-telnyx/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "@telnyx/react-native",
"version": "1.1.2",
"description": "React-Native library for connecting to Telnyx.",
"author": "Telnyx Team",
"main": "dist/react-native/src/index.js",
"module": "dist/react-native/src/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/team-telnyx/webrtc.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && mkdir ./dist && ./node_modules/.bin/tsc",
"release": "release-it"
},
"engines": {
"node": ">=11"
},
"keywords": [
"telnyx",
"telnyxRTC",
"webrtc",
"sip",
"freeswitch",
"react-native"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"@telnyx:registry": "https://registry.npmjs.org"
},
"release-it": {
"git": {
"commitMessage": "Release react-native ${version}",
"tagAnnotation": "Release react-native ${version}",
"tagName": "react-native/v${version}"
},
"github": {
"release": true,
"releaseName": "react-native@${version}"
}
},
"dependencies": {
"loglevel": "^1.6.7",
"uuid": "^7.0.2"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/uuid": "^7.0.2",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
}
}