forked from onsip/SIP.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.2 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
{
"name": "sip.js",
"title": "SIP.js",
"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.12.0",
"license": "MIT",
"main": "lib/index.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"
],
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"@types/node": "^10.12.17",
"awesome-typescript-loader": "^5.2.1",
"eslint": "^5.10.0",
"jasmine-core": "^3.3.0",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"pegjs": "^0.10.0",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"prebuild": "eslint src/*.js src/**/*.js",
"generate-grammar": "node build/grammarGenerator.js",
"build-reg-bundle": "webpack --progress --config build/webpack.config.js --env.buildType reg",
"build-min-bundle": "webpack --progress --config build/webpack.config.js --env.buildType min",
"build-bundles": "npm run build-reg-bundle && npm run build-min-bundle",
"build-lib": "tsc",
"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 generate-grammar && npm run build-lib && npm run build-reg-bundle && npm run build-min-bundle && 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"
},
"types": "./types"
}