Tone.js/package.json
2018-05-18 13:01:30 -04:00

69 lines
2 KiB
JSON

{
"name": "tone",
"version": "13.1.0",
"description": "A Web Audio framework for making interactive music in the browser.",
"main": "build/Tone.js",
"files": [
"./README.md",
"build/Tone.js.map",
"build/Tone.js",
"Tone"
],
"scripts": {
"postinstall": "npm run increment",
"increment": "node gulp/increment_version.js",
"build": "npm run increment && cd gulp && gulp collectDependencies && webpack -p --env.production",
"build:test": "webpack -p --env.test",
"watch:test": "webpack -w --mode=development --env.test",
"test:all": "cd gulp && gulp collectTests",
"test:file": "cd gulp && gulp collectTests -f",
"test": "npm run test:all && npm run build:test && npm run karma",
"karma": "karma start gulp/karma.conf.js",
"lint": "cd gulp && gulp lint",
"lint:fix": "cd gulp && gulp lint-fix",
"coveralls": "cd gulp && gulp coveralls",
"test:travis": "npm run lint && npm run test"
},
"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 <yotammann@gmail.com> (http://yotammann.info/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tonejs/Tone.js/issues"
},
"devDependencies": {
"chai": "^1.9.1",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^4.0.2",
"gulp-tap": "^1.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"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",
"mocha": "^5.1.1",
"semver": "^5.5.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}