Skip to content

Commit

Permalink
add rollup to dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jankapunkt committed Nov 30, 2021
1 parent bf3ce89 commit 550287b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'tests/**/*.tests.js'",
"test:coverage": "NODE_ENV=test c8 --all --reporter=html --reporter=text ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
"lint": "standard . | snazzy",
"lint:fix": "standard . --fix | snazzy",
"docs": "jsdoc2md index.js > API.md"
"lint": "standard ./index.js | snazzy",
"lint:fix": "standard ./index.js --fix | snazzy",
"docs:api": "jsdoc2md index.js > API.md",
"docs:html": "rollup index.js --format iife --name \"EasySpeech\" --file docs/bundle.js --compact --no-sourcemap",
"prepublish": "npm run lint && npm run test && npm run docs:api && npm run docs:html"
},
"repository": {
"type": "git",
Expand All @@ -34,6 +36,7 @@
"chai": "^4.3.4",
"jsdoc-to-markdown": "^7.1.0",
"mocha": "^9.1.3",
"rollup": "^2.60.2",
"sinon": "^12.0.1",
"snazzy": "^9.0.0",
"standard": "^16.0.4"
Expand Down

0 comments on commit 550287b

Please sign in to comment.