Skip to content

Commit

Permalink
Force bin/doxdox to be run via node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
neogeek committed May 24, 2017
1 parent 05f06d4 commit ed55fab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -29,12 +29,12 @@
},
"scripts": {
"test": "npm run lint && mocha test/specs/ && npm run test:flags && npm run test:docs",
"test:flags": "bin/doxdox 'lib/**/*.js' --description Description --title Title --package test/fixtures/ --ignore 'lib/**/*.js' | diff test/fixtures/flags.md -",
"test:docs": "bin/doxdox 'lib/**/*.js' -p package.json -l markdown | diff DOCUMENTATION.md -",
"test:flags": "node bin/doxdox 'lib/**/*.js' --description Description --title Title --package test/fixtures/ --ignore 'lib/**/*.js' | diff test/fixtures/flags.md -",
"test:docs": "node bin/doxdox 'lib/**/*.js' -p package.json -l markdown | diff DOCUMENTATION.md -",
"lint": "eslint .",
"coverage": "istanbul cover _mocha test/specs/ && codecov",
"fixtures": "bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package test/fixtures/",
"docs": "bin/doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md"
"fixtures": "node bin/doxdox lib/doxdox.js --output test/fixtures/doxdox.md --package test/fixtures/",
"docs": "node bin/doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md"
},
"keywords": [
"documentation",
Expand Down

0 comments on commit ed55fab

Please sign in to comment.