Skip to content

Commit

Permalink
update more deps
Browse files Browse the repository at this point in the history
  • Loading branch information
DonutEspresso committed Nov 5, 2015
1 parent b48b9d6 commit db6cb23
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Makefile
Expand Up @@ -53,23 +53,23 @@ githooks:

.PHONY: lint
lint: node_modules $(LIB_FILES) $(TEST_FILES)
$(ESLINT) $(LIB_FILES) $(TEST_FILES)
@$(ESLINT) $(LIB_FILES) $(TEST_FILES)


.PHONY: codestyle
codestyle: node_modules $(LIB_FILES) $(TEST_FILES)
$(JSCS) $(LIB_FILES) $(TEST_FILES)
@$(JSCS) $(LIB_FILES) $(TEST_FILES)


.PHONY: codestyle-fix
codestyle-fix: node_modules $(LIB_FILES) $(TEST_FILES)
$(JSCS) $(LIB_FILES) $(TEST_FILES) --fix
@$(JSCS) $(LIB_FILES) $(TEST_FILES) --fix


.PHONY: nsp
nsp: node_modules $(NSP)
$(NPM) shrinkwrap --dev
($(NSP) audit-shrinkwrap || echo 1) | $(NSP_BADGE)
@($(NSP) check || echo 1) | $(NSP_BADGE)
@rm $(SHRINKWRAP)


Expand All @@ -79,12 +79,12 @@ prepush: node_modules lint codestyle test

.PHONY: test
test: node_modules
$(MOCHA) -R spec
@$(MOCHA) -R spec --full-trace


.PHONY: coverage
coverage: node_modules clean-coverage $(LIB_FILES) $(TEST_FILES)
$(ISTANBUL) cover $(_MOCHA) --report lcovonly -- -R spec
@$(ISTANBUL) cover $(_MOCHA) --report lcovonly -- -R spec


.PHONY: report-coverage
Expand Down
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -42,14 +42,14 @@
"test": "make test"
},
"devDependencies": {
"chai": "^3.2.0",
"chai": "^3.4.0",
"coveralls": "^2.11.4",
"eslint": "^1.3.1",
"istanbul": "^0.3.19",
"jscs": "^2.1.1",
"eslint": "^1.8.0",
"istanbul": "^0.4.0",
"jscs": "^2.5.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.0",
"nock": "^2.10.0",
"mocha": "^2.3.3",
"nock": "^2.17.0",
"nsp": "^2.0.1",
"restify": "^4.0.3"
},
Expand Down

0 comments on commit db6cb23

Please sign in to comment.