/var/www/myprog.com.ua/server/node/node_modules/engine.io-client
NameSizeModeActions
lib/-0755rm
node_modules/-0755rm
.npmignore140644editdlrm
.travis.yml17110644editdlrm
.zuul.yml4560644editdlrm
engine.io.js791740644editdlrm
History.md113970644editdlrm
index.js380644editdlrm
Makefile8450644editdlrm
package.json13570644editdlrm
README.md79680644editdlrm
Edit: /var/www/myprog.com.ua/server/node/node_modules/engine.io-client/Makefile (845B)
REPORTER = dot build: engine.io.js engine.io.js: lib/*.js lib/transports/*.js package.json @./support/browserify.sh > engine.io.js test: @if [ "x$(BROWSER_NAME)" = "x" ]; then make test-node; else make test-zuul; fi test-node: @./node_modules/.bin/mocha \ --reporter $(REPORTER) \ test/index.js test-zuul: @if [ "x$(BROWSER_PLATFORM)" = "x" ]; then \ ./node_modules/zuul/bin/zuul \ --browser-name $(BROWSER_NAME) \ --browser-version $(BROWSER_VERSION) \ test/index.js; \ else \ ./node_modules/zuul/bin/zuul \ --browser-name $(BROWSER_NAME) \ --browser-version $(BROWSER_VERSION) \ --browser-platform "$(BROWSER_PLATFORM)" \ test/index.js; \ fi test-cov: @./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \ --require ./test/common \ --reporter $(REPORTER) \ $(TESTS) .PHONY: test build