-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
285 additions
and
1,217 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "riff-chunks", | ||
"version": "3.1.0", | ||
"version": "4.0.0", | ||
"description": "Read and write the chunks of RIFF and RIFX files.", | ||
"homepage": "https://github.com/rochars/riff-chunks", | ||
"author": "Rafael da Silva Rocha <[email protected]>", | ||
|
@@ -25,12 +25,10 @@ | |
"test": "nyc ./node_modules/mocha/bin/_mocha test --src --recursive", | ||
"test-dist": "nyc ./node_modules/mocha/bin/_mocha test --dist --recursive", | ||
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov", | ||
"bundle": "webpack", | ||
"compile": "google-closure-compiler-js dist/riff-chunks.js > dist/riff-chunks-min.js", | ||
"compile": "google-closure-compiler-js dist/riff-chunks.js > dist/riff-chunks-min.js --compilationLevel=ADVANCED", | ||
"doc": "./node_modules/.bin/jsdoc index.js -d docs -r README.md -t node_modules/docdash", | ||
"qa": "npm run lint && npm test", | ||
"pack": "npm run bundle && npm run compile && npm run doc", | ||
"build": "npm run qa && npm run pack && npm run test-dist" | ||
"pack": "webpack && npm run compile && npm run doc", | ||
"build": "npm run lint && npm test && npm run pack && npm run test-dist" | ||
}, | ||
"devDependencies": { | ||
"browser-env": "^3.2.4", | ||
|
@@ -47,6 +45,6 @@ | |
}, | ||
"main": "index.js", | ||
"dependencies": { | ||
"byte-data": "^4.0.2" | ||
"byte-data": "^5.0.1" | ||
} | ||
} |
Oops, something went wrong.