mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-13 23:37:14 +00:00
bd0d1e9842
Bumps [marked](https://github.com/markedjs/marked) to 4.2.12 and updates ancestor dependency [typedoc](https://github.com/TypeStrong/TypeDoc). These dependencies need to be updated together. Updates `marked` from 1.0.0 to 4.2.12 - [Release notes](https://github.com/markedjs/marked/releases) - [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json) - [Commits](https://github.com/markedjs/marked/compare/v1.0.0...v4.2.12) Updates `typedoc` from 0.17.8 to 0.23.24 - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/TypeStrong/TypeDoc/compare/0.17.8...v0.23.24) --- updated-dependencies: - dependency-name: marked dependency-type: indirect - dependency-name: typedoc dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
116 lines
3.6 KiB
JSON
116 lines
3.6 KiB
JSON
{
|
|
"name": "tone",
|
|
"version": "14.8.0",
|
|
"description": "A Web Audio framework for making interactive music in the browser.",
|
|
"browser": "build/Tone.js",
|
|
"main": "build/esm/index.js",
|
|
"module": "build/esm/index.js",
|
|
"type": "module",
|
|
"unpkg": "build/Tone.js",
|
|
"types": "build/esm/index.d.ts",
|
|
"files": [
|
|
"README.md",
|
|
"LICENSE.md",
|
|
"build",
|
|
"docs",
|
|
"Tone"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run increment && rm -rf build && npm run ts:build && npm run webpack:build",
|
|
"codecov": "codecov",
|
|
"docs": "node scripts/generate_docs.cjs",
|
|
"docs:json": "cross-var typedoc --options \"./scripts/typedoc.json\" --json \"$npm_config_docs_json\"",
|
|
"increment": "node scripts/increment_version.cjs",
|
|
"karma": "cross-var karma start ./test/karma.conf.cjs --single-run --file $npm_config_file --dir $npm_config_dir",
|
|
"karma:browser": "cross-var karma start ./test/karma.conf.cjs --auto-watch --browsers OnlineChrome --file $npm_config_file --dir $npm_config_dir",
|
|
"karma:watch": "cross-var karma start ./test/karma.conf.cjs --auto-watch --file $npm_config_file --dir $npm_config_dir",
|
|
"lint": "eslint --ignore-pattern ./Tone/**/*.test.ts --ext ts ./Tone",
|
|
"lint:fix": "eslint --ext ts --fix ./Tone",
|
|
"scratch": "webpack -w --env scratch=1 --mode=development",
|
|
"test": "npm run karma",
|
|
"test:browser": "npm run karma:browser",
|
|
"test:examples": "node ./test/scripts/test_examples.cjs",
|
|
"test:html": "node ./test/scripts/test_html.cjs",
|
|
"test:node": "node ./test/scripts/node_test.cjs",
|
|
"test:readme": "node ./test/scripts/test_readme.cjs",
|
|
"test:travis": "npm run build && npm run lint && npm run test",
|
|
"test:watch": "npm run karma:watch",
|
|
"ts:build": "tsc --project ./scripts/tsconfig.build.json",
|
|
"watch": "tsc --watch",
|
|
"webpack:watch": "webpack -w --env production=1 --mode=development --config ./webpack.config.cjs",
|
|
"webpack:build": "webpack --env production=1 --config ./webpack.config.cjs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Tonejs/Tone.js.git"
|
|
},
|
|
"keywords": [
|
|
"Web Audio",
|
|
"Web Audio API",
|
|
"Synthesis",
|
|
"Playback",
|
|
"Effect",
|
|
"Instrument",
|
|
"DSP",
|
|
"Signal Processing",
|
|
"Interactive Music"
|
|
],
|
|
"author": "Yotam Mann (https://yotammann.info/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Tonejs/Tone.js/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@tonejs/plot": "0.0.35",
|
|
"@types/chai": "^4.3.0",
|
|
"@types/mocha": "^5.2.6",
|
|
"@types/ua-parser-js": "^0.7.36",
|
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
"@typescript-eslint/parser": "^5.6.0",
|
|
"async": "^3.2.2",
|
|
"chai": "^4.3.4",
|
|
"codecov": "^3.8.3",
|
|
"cross-var": "^1.1.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-html": "^6.2.0",
|
|
"eslint-plugin-jsdoc": "^36.1.1",
|
|
"fs-extra": "^8.1.0",
|
|
"glob": "^7.2.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"http-server": "^13.0.2",
|
|
"jsdom": "^16.7.0",
|
|
"karma": "^6.3.9",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-coverage": "^2.1.0",
|
|
"karma-firefox-launcher": "^1.3.0",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-safari-launcher": "^1.0.0",
|
|
"karma-sourcemap-loader": "^0.3.8",
|
|
"karma-spec-reporter": "0.0.32",
|
|
"karma-typescript": "^5.5.2",
|
|
"mocha": "^9.1.3",
|
|
"semver": "^5.7.1",
|
|
"showdown": "^2.0.0-alpha",
|
|
"teoria": "^2.5.0",
|
|
"tmp-promise": "^2.1.1",
|
|
"ts-loader": "^7.0.5",
|
|
"ts-node": "^8.10.2",
|
|
"typedoc": "^0.23.24",
|
|
"typescript": "^4.4.4",
|
|
"ua-parser-js": "^0.7.31",
|
|
"webpack": "^5.65.0",
|
|
"webpack-cli": "^4.10.0",
|
|
"yargs": "^17.3.0"
|
|
},
|
|
"dependencies": {
|
|
"standardized-audio-context": "^25.3.37",
|
|
"tslib": "^2.3.1"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "es5",
|
|
"tabWidth": 4,
|
|
"semi": true,
|
|
"useTabs": true,
|
|
"singleQuote": false
|
|
}
|
|
}
|