forked from onsip/SIP.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.5 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
67
68
69
70
71
72
{
"name": "sip.js",
"title": "SIP.js",
"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.14.6",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"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",
"webrtc",
"library",
"websocket",
"javascript",
"typescript"
],
"dependencies": {
"crypto-js": "^3.1.9-1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/jasmine": "^3.3.13",
"@types/node": "^12.0.8",
"circular-dependency-plugin": "^5.0.2",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"pegjs": "^0.10.0",
"ts-loader": "^6.0.3",
"ts-pegjs": "0.2.5",
"tslint": "^5.17.0",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"engines": {
"node": ">=8.0"
},
"scripts": {
"prebuild": "tslint -p tsconfig-base.json -c tslint.json",
"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 -p src",
"build-test": "tsc -p test",
"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": "npm run build-test && sleep 2 && open http://0.0.0.0:9876/debug.html & karma start --reporters kjhtml --no-single-run",
"commandLineTest": "npm run build-test && karma start --reporters mocha --browsers ChromeHeadless --single-run",
"buildAndTest": "npm run build && npm run commandLineTest",
"buildAndBrowserTest": "npm run build && npm run browserTest"
}
}