Initial commit

This commit is contained in:
Arnaud Nelissen
2021-07-16 10:18:13 +02:00
commit 3af7ddab06
5894 changed files with 590836 additions and 0 deletions

26
node_modules/mquery/Makefile generated vendored Normal file
View File

@@ -0,0 +1,26 @@
test:
@NODE_ENV=test ./node_modules/.bin/mocha $(T) $(TESTS)
test-cov:
@NODE_ENV=test node \
node_modules/.bin/istanbul cover \
./node_modules/.bin/_mocha \
-- -u exports \
open-cov:
open coverage/lcov-report/index.html
lint:
@NODE_ENV=test node ./node_modules/eslint/bin/eslint.js .
test-travis:
@NODE_ENV=test node \
node_modules/.bin/istanbul cover \
./node_modules/.bin/_mocha \
--report lcovonly \
--bail
@NODE_ENV=test node \
./node_modules/eslint/bin/eslint.js .
.PHONY: test test-cov open-cov lint test-travis