UNPKG

wavefile-creator

Version:
84 lines (83 loc) 2.24 kB
{ "name": "wavefile-creator", "version": "1.0.0", "description": "Read and write wav files.", "homepage": "https://github.com/rochars/wavefile-creator", "author": "Rafael da Silva Rocha <rocha.rafaelsilva@gmail.com>", "license": "MIT", "main": "./dist/wavefile-creator.js", "module": "./index.js", "types": "./index.d.ts", "engines": { "node": ">=8" }, "keywords": [ "read", "wav", "RIFF", "RIFX", "RF64", "WAVE", "BWF", "audio", "8-bit", "11-bit", "12-bit", "16-bit", "20-bit", "24-bit", "32-bit", "64-bit" ], "repository": { "type": "git", "url": "git://github.com/rochars/wavefile-creator.git" }, "bugs": { "url": "https://github.com/rochars/wavefile-creator/issues" }, "directories": { "dist": "dist", "externs": "externs" }, "files": [ "dist", "externs", "index.js", "index.d.ts", "LICENSE", "README.md", "AUTHORS.md", "CHANGELOG.md" ], "scripts": { "lint": "jshint index.js externs", "test": "nyc ./node_modules/mocha/bin/_mocha test/dist --recursive -R dot --timeout=1600000", "test-umd": "node ./node_modules/mocha/bin/_mocha test/dist --umd --recursive -R dot --timeout=240000", "test-tsc": "tsc ./test/TypeScript/index.ts && node -r esm ./test/TypeScript/index.js", "test-dist": "npm run test-umd && npm run test-tsc", "rollup-bundle": "npm test && rollup -c && npm run test-dist", "doc": "./node_modules/.bin/jsdoc -c .jsdocrc -d docs -r README.md -t node_modules/docdash", "build": "npm run lint && npm run rollup-bundle && npm run doc", "coverage": "nyc report --reporter=lcov > coverage.lcov && codecov" }, "devDependencies": { "@ampproject/rollup-plugin-closure-compiler": "^0.13.0", "@rollup/plugin-commonjs": "^11.0.0", "@rollup/plugin-node-resolve": "^6.0.0", "codecov": "^3.6.1", "docdash": "^1.1.1", "esm": "^3.2.25", "jsdoc": "^3.6.3", "jshint": "^2.10.3", "mocha": "^6.2.2", "mocha-lcov-reporter": "^1.3.0", "nyc": "^14.1.1", "rollup": "^1.27.14", "typescript": "^3.7.4" }, "dependencies": { "byte-data": "^18.0.3", "wavefile-parser": "^1.0.0" } }