forked from onsip/SIP.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
{
"name": "sip.js",
"title": "SIP.js",
"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.11.6",
"main": "dist/sip.js",
"browser": {
"./src/environment.js": "./src/environment_browser.js"
},
"homepage": "https://sipjs.com",
"author": "OnSIP <[email protected]> (https://sipjs.com/aboutus/)",
"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": {
"awesome-typescript-loader": "^5.2.1",
"eslint": "^5.4.0",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^1.3.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.4",
"typescript": "^3.0.3",
"webpack": "^4.19.0",
"webpack-cli": "^3.0.8"
},
"engines": {
"node": ">=6.0"
},
"license": "MIT",
"scripts": {
"prebuild": "eslint src/*.js src/**/*.js",
"build-dev": "webpack --progress --env.buildType dev",
"build-prod": "webpack --progress --env.buildType prod",
"copy-dist-files": "cp dist/sip.js dist/sip-$npm_package_version.js && cp dist/sip.min.js dist/sip-$npm_package_version.min.js",
"build": "npm run build-dev && npm run build-prod && npm run copy-dist-files",
"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 ChromeHeadless --single-run",
"buildAndTest": "npm run build && npm run commandLineTest",
"buildAndBrowserTest": "npm run build && npm run browserTest"
},
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"optionalDependencies": {
"promiscuous": "^0.6.0"
}
}