2014-08-31 21:41:03 +00:00
|
|
|
{
|
|
|
|
"name": "tone",
|
2019-08-26 17:55:04 +00:00
|
|
|
"version": "14.3.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",
|
2019-07-25 18:49:46 +00:00
|
|
|
"module": "build/esm/index.js",
|
|
|
|
"types": "build/esm/index.d.ts",
|
2015-03-03 17:06:52 +00:00
|
|
|
"files": [
|
2018-05-19 17:12:01 +00:00
|
|
|
"README.md",
|
2018-08-23 04:18:20 +00:00
|
|
|
"LICENSE.md",
|
2019-09-20 15:06:51 +00:00
|
|
|
"build",
|
|
|
|
"docs",
|
2016-01-03 17:37:08 +00:00
|
|
|
"Tone"
|
2015-03-03 17:06:52 +00:00
|
|
|
],
|
2014-08-31 21:41:03 +00:00
|
|
|
"scripts": {
|
2019-07-25 18:49:46 +00:00
|
|
|
"build": "npm run increment-ts && rm -rf build && npm run ts:build && npm run webpack:build",
|
2019-02-01 15:17:35 +00:00
|
|
|
"codecov": "codecov",
|
2018-08-27 01:55:19 +00:00
|
|
|
"collect": "npm run collect:deps",
|
2018-08-23 04:18:20 +00:00
|
|
|
"collect:deps": "node scripts/collect_deps.js",
|
|
|
|
"collect:tests": "node scripts/collect_tests.js --file $npm_config_file --dir $npm_config_dir",
|
2019-09-16 00:59:05 +00:00
|
|
|
"docs": "node scripts/generate_docs.js",
|
|
|
|
"docs:json": "typedoc --options \"./scripts/typedoc.json\" --json \"$npm_config_docs_json\"",
|
2018-08-23 04:18:20 +00:00
|
|
|
"increment": "node scripts/increment_version.js",
|
2019-07-11 04:54:34 +00:00
|
|
|
"increment-ts": "node scripts/increment_version_ts.js",
|
2019-08-12 14:16:34 +00:00
|
|
|
"karma": "karma start scripts/karma.conf.js --single-run --file $npm_config_file --dir $npm_config_dir",
|
|
|
|
"karma:browser": "karma start scripts/karma.conf.js --auto-watch --browsers OnlineChrome --file $npm_config_file --dir $npm_config_dir",
|
|
|
|
"karma:watch": "karma start scripts/karma.conf.js --auto-watch --file $npm_config_file --dir $npm_config_dir",
|
2019-09-16 03:32:40 +00:00
|
|
|
"lint": "eslint --ignore-pattern ./Tone/**/*.test.ts --ext ts ./Tone",
|
|
|
|
"lint:fix": "eslint --ext ts --fix ./Tone",
|
2018-08-23 04:18:20 +00:00
|
|
|
"scratch": "webpack -w --env.scratch --mode=development",
|
2019-05-23 17:59:08 +00:00
|
|
|
"test": "npm run karma",
|
2018-08-23 04:18:20 +00:00
|
|
|
"test:watch": "npm run collect:tests && npm run karma:watch",
|
2019-08-04 14:08:42 +00:00
|
|
|
"test:browser": "npm run karma:browser",
|
2018-07-30 03:49:37 +00:00
|
|
|
"test:travis": "npm run build && npm run lint && npm run test",
|
2018-08-26 23:43:28 +00:00
|
|
|
"test:html": "mocha ./test/html/testHTML.js --timeout 30000",
|
2018-08-29 17:54:55 +00:00
|
|
|
"test:node": "node ./test/html/node_test.js",
|
2019-07-25 18:49:46 +00:00
|
|
|
"ts:build": "tsc --project tsconfig.build.json",
|
2019-07-11 04:21:20 +00:00
|
|
|
"watch": "tsc --watch",
|
2019-08-05 14:32:08 +00:00
|
|
|
"webpack:watch": "webpack -w --env.production --mode=development",
|
2019-07-25 18:49:46 +00:00
|
|
|
"webpack:build": "webpack -p --env.production"
|
2014-08-31 21:41:03 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2015-08-10 18:41:39 +00:00
|
|
|
"url": "https://github.com/Tonejs/Tone.js.git"
|
2014-08-31 21:41:03 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
2014-09-11 18:12:42 +00:00
|
|
|
"Web Audio",
|
|
|
|
"Web Audio API",
|
2014-08-31 21:41:03 +00:00
|
|
|
"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"
|
2014-08-31 21:41:03 +00:00
|
|
|
],
|
2018-08-23 04:18:20 +00:00
|
|
|
"author": "Yotam Mann (https://yotammann.info/)",
|
2014-08-31 21:41:03 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2015-08-10 18:41:39 +00:00
|
|
|
"url": "https://github.com/Tonejs/Tone.js/issues"
|
2018-05-18 16:11:21 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-20 15:06:51 +00:00
|
|
|
"@tonejs/plot": "0.0.27",
|
2019-04-12 14:37:47 +00:00
|
|
|
"@types/chai": "^4.1.7",
|
|
|
|
"@types/mocha": "^5.2.6",
|
|
|
|
"@types/ua-parser-js": "^0.7.32",
|
2019-09-14 22:29:40 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^1.13.0",
|
|
|
|
"@typescript-eslint/parser": "^1.13.0",
|
2019-04-12 14:37:47 +00:00
|
|
|
"chai": "^1.10.0",
|
2019-02-01 15:17:35 +00:00
|
|
|
"codecov": "^3.1.0",
|
2019-09-14 22:29:40 +00:00
|
|
|
"eslint": "^6.4.0",
|
2018-05-18 17:24:27 +00:00
|
|
|
"glob": "^7.1.2",
|
2018-05-18 16:11:21 +00:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2018-06-20 14:37:49 +00:00
|
|
|
"http-server": "^0.11.1",
|
2018-05-18 22:03:37 +00:00
|
|
|
"istanbul-instrumenter-loader": "^3.0.1",
|
2019-06-19 19:54:15 +00:00
|
|
|
"karma": "^4.1.0",
|
2018-05-18 16:11:21 +00:00
|
|
|
"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",
|
2018-05-18 22:03:37 +00:00
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
2019-06-18 01:49:23 +00:00
|
|
|
"karma-spec-reporter": "0.0.32",
|
2019-04-12 14:37:47 +00:00
|
|
|
"karma-typescript": "^4.0.0",
|
2018-05-18 16:11:21 +00:00
|
|
|
"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",
|
2019-07-11 04:21:20 +00:00
|
|
|
"ts-loader": "^6.0.4",
|
2019-09-14 22:33:36 +00:00
|
|
|
"typedoc": "^0.15.0",
|
2019-07-18 18:07:14 +00:00
|
|
|
"typescript": "^3.5.3",
|
2019-06-19 21:25:14 +00:00
|
|
|
"ua-parser-js": "^0.7.20",
|
2019-09-04 01:52:32 +00:00
|
|
|
"webpack": "^4.39.3",
|
|
|
|
"webpack-cli": "^3.3.7",
|
2019-02-15 18:02:49 +00:00
|
|
|
"yargs": "^13.2.0"
|
2019-01-08 16:34:42 +00:00
|
|
|
},
|
2019-08-26 17:55:04 +00:00
|
|
|
"dependencies": {
|
2019-09-04 02:22:54 +00:00
|
|
|
"standardized-audio-context": "^21.2.0"
|
2019-08-26 17:55:04 +00:00
|
|
|
}
|
2014-08-31 21:41:03 +00:00
|
|
|
}
|