scratch-audio/package.json
Michael "Z" Goddard d5d6ab9eb8
Depend on script dependencies for downstream webpack
Downstream webpack will need any dependencies src/ depends on so it can
successfully build. Also if multiple packages being built into a larger
script share a common dependency version range, they can share the
dependency instead of duplicating it. This will save built file size,
execution time, and memory.
2018-05-08 11:13:05 -04:00

40 lines
1 KiB
JSON

{
"name": "scratch-audio",
"version": "0.1.0",
"description": "audio engine for scratch 3.0",
"main": "dist.js",
"browser": "./src/index.js",
"scripts": {
"test": "npm run lint && npm run build",
"build": "webpack --bail",
"watch": "webpack --watch",
"lint": "eslint .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LLK/scratch-audio.git"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/LLK/scratch-audio/issues"
},
"homepage": "https://github.com/LLK/scratch-audio#readme",
"dependencies": {
"audio-context": "1.0.1",
"minilog": "^3.0.1",
"startaudiocontext": "1.2.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-scratch": "^3.1.0",
"json": "^9.0.6",
"travis-after-all": "^1.4.4",
"webpack": "2.4.0"
}
}