forked from onsip/SIP.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "sip.js",
"title": "SIP.js",
"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.7.3",
"main": "src/index.js",
"browser": {
"./src/environment.js": "./src/environment_browser.js"
},
"homepage": "http://sipjs.com",
"author": "OnSIP <developer@onsip.com> (http://sipjs.com/authors/)",
"contributors": [
{
"url": "https://github.com/onsip/SIP.js/blob/master/THANKS.md"
}
],
"repository": {
"type": "git",
"url": "https://github.com/onsip/SIP.js.git"
},
"keywords": [
"sip",
"websocket",
"webrtc",
"library",
"javascript"
],
"devDependencies": {
"beefy": "^2.1.5",
"browserify": "^4.1.8",
"grunt": "~0.4.0",
"grunt-browserify": "^4.0.1",
"grunt-cli": "~0.1.6",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jasmine": "^0.9.2",
"grunt-contrib-jshint": ">0.5.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-peg": "~1.3.1",
"grunt-trimtrailingspaces": "^0.4.0",
"pegjs": "^0.8.0"
},
"engines": {
"node": ">=0.8"
},
"license": "MIT",
"scripts": {
"repl": "beefy test/repl.js --open",
"build": "grunt build",
"prepublish": "cd src/Grammar && rm -rf dist && mkdir dist && pegjs --extra-options-file peg.json src/Grammar.pegjs dist/Grammar.js",
"test": "grunt travis --verbose"
},
"dependencies": {
"ws": "^1.1.0"
},
"optionalDependencies": {
"promiscuous": "^0.6.0"
}
}