forked from onsip/SIP.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "sip.js",
"title": "SIP.js",
"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.7.8",
"main": "src/index.js",
"browser": {
"./src/environment.js": "./src/environment_browser.js"
},
"homepage": "http://sipjs.com",
"author": "OnSIP <[email protected]> (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": {
"eslint": "^4.5.0",
"eslint-loader": "^1.9.0",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.5.5"
},
"engines": {
"node": ">=4.0"
},
"license": "MIT",
"scripts": {
"build": "webpack --progress && cp dist/sip.js dist/sip-$npm_package_version.js && cp dist/sip.min.js dist/sip-$npm_package_version.min.js",
"browserTest": "sleep 2 && open http://0.0.0.0:9876/debug.html & karma start --reporters kjhtml --no-single-run",
"commandLineTest": "karma start --reporters mocha --browsers PhantomJS --single-run",
"buildAndTest": "npm run build && npm run commandLineTest"
},
"dependencies": {
"ws": "^1.0.1"
},
"optionalDependencies": {
"promiscuous": "^0.6.0"
}
}