-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "turn-js",
"version": "0.7.0",
"description": "TURN (Traversal Using Relay NAT) library written entirely in JavaScript",
"main": "index.js",
"keywords": [
"nat",
"turn",
"udp"
],
"author": {
"name": "Nico Janssens",
"email": "nico.b.janssens@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=6.9.0"
},
"browser": {
"winston": "winston-browser"
},
"dependencies": {
"args-js": "^0.10.12",
"merge": "^1.2.0",
"q": "^1.4.1",
"stun-js": "^0.7.0",
"winston": "^2.3.1",
"winston-browser": "^1.0.0",
"winston-debug": "^1.1.0",
"winston-meta-wrapper": "^1.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chrome-dgram": "^3.0.1",
"mocha": "^3.2.0",
"publish": "^0.6.0",
"uglify-js": "^2.7.5",
"yargs": "^6.5.0"
},
"repository": {
"type": "git",
"url": "git://github.com/microminion/turn-js.git"
},
"scripts": {
"build": "browserify -s TurnClient -e -t [ babelify --global --presets [ es2015 ] ] ./ | uglifyjs -c warnings=false -m > turn.min.js",
"build-debug": "browserify -s TurnClient -e ./ > turn.debug.js",
"size": "npm run build && cat turn.min.js | gzip | wc -c",
"test-node": "./node_modules/.bin/mocha test/*.unit.js",
"clean": "rm -f turn.*.js && rm -rf node_modules",
"2npm": "publish"
}
}