Tone.js/package.json

76 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "tone",
2018-05-18 16:49:09 +00:00
"version": "13.1.0",
2014-09-11 03:42:17 +00:00
"description": "A Web Audio framework for making interactive music in the browser.",
2015-03-09 14:48:03 +00:00
"main": "build/Tone.js",
2015-03-03 17:06:52 +00:00
"files": [
"./README.md",
"build/Tone.js.map",
"build/Tone.js",
"Tone"
2015-03-03 17:06:52 +00:00
],
"scripts": {
"increment": "node gulp/increment_version.js",
2018-05-18 17:07:21 +00:00
"build": "npm run increment && gulp --gulpfile=gulp/gulpfile.js collectDependencies && webpack -p --env.production",
"build:test": "webpack -p --env.test",
"watch:test": "webpack -w --mode=development --env.test",
2018-05-18 17:07:21 +00:00
"test:all": "gulp --gulpfile=gulp/gulpfile.js collectTests",
2018-05-19 14:53:46 +00:00
"test:file": "gulp --gulpfile=gulp/gulpfile.js collectTests --file",
"test:dir": "gulp --gulpfile=gulp/gulpfile.js collectTests --dir",
2018-05-19 16:26:35 +00:00
"test": "npm run test:all && npm run karma",
"karma": "karma start gulp/karma.conf.js --single-run",
2018-05-18 17:07:21 +00:00
"lint": "gulp --gulpfile=gulp/gulpfile.js lint",
"lint:fix": "gulp --gulpfile=gulp/gulpfile.js lint-fix",
"coveralls": "gulp --gulpfile=gulp/gulpfile.js coveralls",
"test:travis": "npm run lint && npm run test"
},
"repository": {
"type": "git",
2015-08-10 18:41:39 +00:00
"url": "https://github.com/Tonejs/Tone.js.git"
},
"keywords": [
2014-09-11 18:12:42 +00:00
"Web Audio",
"Web Audio API",
"Synthesis",
"Playback",
"Effect",
2014-09-11 18:12:42 +00:00
"Instrument",
"DSP",
2015-03-03 17:06:52 +00:00
"Signal Processing",
"Interactive Music"
],
"author": "Yotam Mann <yotammann@gmail.com> (http://yotammann.info/)",
"license": "MIT",
"bugs": {
2015-08-10 18:41:39 +00:00
"url": "https://github.com/Tonejs/Tone.js/issues"
},
"devDependencies": {
2018-05-19 16:17:23 +00:00
"@babel/polyfill": "^7.0.0-beta.47",
"audiobuffer-to-wav": "^1.0.0",
"chai": "^1.9.1",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
2018-05-19 16:17:23 +00:00
"fft-js": "0.0.11",
2018-05-18 17:24:27 +00:00
"glob": "^7.1.2",
2018-05-18 18:13:42 +00:00
"gulp": "^4.0.0",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^4.0.2",
"gulp-watch": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
2018-05-18 16:43:54 +00:00
"semver": "^5.5.0",
2018-05-19 16:17:23 +00:00
"teoria": "^2.5.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}