riff-chunks
Version:
Parse the chunks of RIFF and RIFX files.
69 lines (68 loc) • 2.33 kB
JSON
{
"name": "riff-chunks",
"version": "9.0.0",
"description": "Parse the chunks of RIFF and RIFX files.",
"homepage": "https://github.com/rochars/riff-chunks",
"author": "Rafael S. Rocha <rocha.rafaelsilva@gmail.com>",
"license": "MIT",
"main": "./dist/riff-chunks.cjs.js",
"module": "./main.js",
"es2015": "./dist/riff-chunks.js",
"browser": "./dist/riff-chunks.umd.js",
"jsdelivr": "./dist/riff-chunks.min.js",
"unpkg": "./dist/riff-chunks.min.js",
"engines": {
"node": ">=8"
},
"keywords": [
"RIFF",
"RIFX",
"LIST",
"chunk",
"parser",
"read"
],
"repository": {
"type": "git",
"url": "git://github.com/rochars/riff-chunks.git"
},
"bugs": {
"url": "https://github.com/rochars/riff-chunks/issues"
},
"directories": {
"dist": "./dist"
},
"scripts": {
"lint": "jshint main.js && jshint test",
"test": "nyc ./node_modules/mocha/bin/_mocha test --require=esm --recursive -R dot",
"test-min": "node ./node_modules/mocha/bin/_mocha test --min --recursive -R dot",
"test-cjs": "node ./node_modules/mocha/bin/_mocha test --cjs --recursive -R dot",
"test-umd": "node ./node_modules/mocha/bin/_mocha test --umd --recursive -R dot",
"test-esm": "nyc ./node_modules/mocha/bin/_mocha test --esm --require=esm --recursive -R dot",
"test-dist": "npm run test-esm && npm run test-min && npm run test-cjs && npm run test-umd",
"pack": "rollup --config && npm run test-dist && npm run test",
"doc": "./node_modules/.bin/jsdoc main.js -d docs -t node_modules/docdash -r README.md",
"build": "npm run lint && npm run pack && npm run doc",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"devDependencies": {
"browser-env": "^3.2.5",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"docdash": "^0.4.0",
"esm": "^3.0.54",
"google-closure-compiler-js": "^20180610.0.0",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^12.0.2",
"rollup": "^0.61.2",
"rollup-plugin-closure-compiler-js": "^1.0.6",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0"
},
"dependencies": {
"byte-data": "^13.2.5"
}
}