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

Commit

Permalink
Make npm scripts work on Windows too. (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatfisz authored and hzoo committed Apr 18, 2016
1 parent 27debee commit e232263
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"bootstrap": "git submodule update --init && cd eslint && npm install",
"eslint": "cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js",
"test": "mocha",
"lint": "./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test",
"fix": "./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix",
"lint": "node node_modules/eslint/bin/eslint.js index.js babylon-to-espree test",
"fix": "node node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix",
"preversion": "npm test"
},
"author": "Sebastian McKenzie <sebmck@gmail.com>",
Expand Down

0 comments on commit e232263

Please sign in to comment.