UNPKG

ciseaux

Version:

utility to chop an audio buffer

63 lines (62 loc) 1.81 kB
{ "name": "ciseaux", "description": "utility to chop an audio buffer", "version": "0.4.0", "author": "Nao Yonamine <mohayonao@gmail.com>", "bugs": { "url": "https://github.com/mohayonao/ciseaux/issues" }, "dependencies": { "audiodata": "^1.1.0", "inline-worker": "^1.0.0", "wav-decoder": "^1.0.0", "wav-encoder": "^1.0.0" }, "devDependencies": { "babel": "^6.3.13", "babel-cli": "^6.3.17", "babel-eslint": "^4.1.6", "babel-preset-es2015": "^6.3.13", "browserify": "^12.0.1", "eslint": "^1.10.3", "eslint-config-mohayonao": "^0.1.0", "espower-babel": "^4.0.1", "isparta": "^4.0.0", "mocha": "^2.3.4", "power-assert": "^1.2.0", "uglify-js": "^2.6.1", "web-audio-test-api": "0.3.0" }, "files": [ "package.json", "README.md", "index.js", "browser.js", "node.js", "lib" ], "homepage": "https://github.com/mohayonao/ciseaux/", "keywords": [ "TapeEdit", "WebAudioAPI", "buffer", "music" ], "license": "MIT", "main": "./index.js", "repository": { "type": "git", "url": "https://github.com/mohayonao/ciseaux.git" }, "scripts": { "build": "npm run build:to5 && npm run build:browser && npm run build:minify", "build:browser": "browserify ./browser.js --standalone Ciseaux --outfile build/ciseaux.js", "build:minify": "uglifyjs build/ciseaux.js -m -r self -o build/ciseaux.min.js", "build:to5": "babel src --out-dir lib", "cover": "babel-node $(npm bin)/isparta cover --report text --report html --report lcov _mocha", "lint": "eslint src test", "prepublish": "rm -rf lib && npm run lint && npm run test && npm run build", "test": "mocha --compilers js:espower-babel/guess", "travis": "npm run lint && npm run cover" } }