This repository was archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.71 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": "siglr",
"version": "3.0.7",
"description": "",
"main": "src/node/index.js",
"scripts": {
"js-min": "./tasks/banner | xargs -0 -I banner uglifyjs src/js/signaler.js --preamble banner -c -m --screw-ie8 -p relative --source-map dist/signaler.min.js.map -o dist/signaler.min.js",
"ng-min": "./tasks/banner | xargs -0 -I banner uglifyjs src/js/signaler.js src/angular/signaler.js --preamble banner -c -m --screw-ie8 -p relative --source-map dist/signaler-angular.min.js.map -o dist/signaler-angular.min.js",
"min": "npm run-script js-min && npm run-script ng-min && plato -r -d report -l .jshintrc -t \"signaler\" src/",
"test": "node spec/start-node.js",
"debug": "node-debug spec/start-node.js",
"lint": "eslint -c .eslintrc src && jshint -c .jshintrc --reporter=unix src && jscs -c .jscsrc src",
"precommit": "npm run-script lint",
"preversion": "npm run-script lint",
"version": "npm run-script min && ./tasks/bower-version-bump && git add -A .",
"postversion": "git push && git push --tags"
},
"files": [
"src/node/index.js",
"src/js/signaler.js",
"src/angular/signaler.js"
],
"repository": {
"type": "git",
"url": "https://github.com/720kb/signaler.git"
},
"author": "Dario Andrei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/720kb/signaler/issues"
},
"homepage": "https://github.com/720kb/signaler",
"dependencies": {
"comunicator": "^2.2.4",
"webrtc-adapter-test": "*"
},
"devDependencies": {
"eslint": "*",
"hapi": "*",
"husky": "*",
"inert": "*",
"jscs": "*",
"jshint": "*",
"jsonwebtoken": "*",
"node-inspector": "*",
"plato": "*",
"uglifyjs": "*"
}
}