-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "unicast-definition",
"version": "3.0.1",
"author": "Chat-Wane <[email protected]>",
"contributors": [
"Folkvir <[email protected]>"
],
"description": "Unicast component relying on a peer-sampling protocol",
"main": "./lib/unicast.js",
"repository": {
"type": "git",
"url": "https://github.com/ran3d/unicast-definition"
},
"keywords": [
"unicast",
"browser-to-browser communication",
"WebRTC"
],
"dependencies": {
"debug": "^3.1.0"
},
"bundledDependencies": [
"lodash.merge",
"debug"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"scripts": {
"lint": "standard --verbose \"./lib/**/*.js\" | snazzy",
"fix": "standard --fix \"./lib/**/*.js\" | snazzy",
"debug": "browserify -r ./lib/unicast.js:unicast-definition -t [babelify --presets [ env ] ] --debug > build/unicast-definition.bundle.debug.js",
"build": "browserify -r ./lib/unicast.js:unicast-definition -t [babelify --presets [ env ] ] > build/unicast-definition.bundle.js",
"esdoc": "esdoc && npm run esdoc:example",
"esdoc:example": "cp -R ./build ./docs",
"test": "npm run all",
"all": "npm run lint && npm run debug && npm run build && npm run esdoc"
},
"license": "MIT"
}