Skip to content
This repository has been archived by the owner on Mar 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #103 from gmarziou/windows-compatibility
Browse files Browse the repository at this point in the history
Modified npm scripts so that they can be run on Windows
  • Loading branch information
jdubois authored Feb 3, 2017
2 parents 8943fc3 + 378afa3 commit 07c41aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
lib/dsl/pegjs_parser.js
coverage
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"DSL"
],
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint-fix": "./node_modules/eslint/bin/eslint.js . --fix",
"lint": "eslint .",
"lint-fix": "eslint.js . --fix",
"check-dependencies": "node ./scripts/check_dependencies.js",
"test": "./node_modules/mocha/bin/mocha test",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test -- -t 5000",
"peg-parse": "./node_modules/pegjs/bin/pegjs -o lib/dsl/pegjs_parser.js lib/dsl/grammar.txt"
"test": "mocha test",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test --",
"peg-parse": "pegjs -o lib/dsl/pegjs_parser.js lib/dsl/grammar.txt"
},
"homepage": "https://github.com/jhipster/jhipster-core#readme",
"repository": {
Expand All @@ -39,7 +39,7 @@
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.14.1",
"eslint": "3.15.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"mocha-clean": "1.0.0",
Expand Down

0 comments on commit 07c41aa

Please sign in to comment.