mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
e689664733
This puts the details of the loaders needed to build index.js out of the concern of the packages that require it.
34 lines
1,009 B
JSON
34 lines
1,009 B
JSON
{
|
|
"name": "scratch-vm",
|
|
"version": "0.1.0",
|
|
"description": "Virtual Machine for Scratch 3.0",
|
|
"author": "Massachusetts Institute of Technology",
|
|
"license": "BSD-3-Clause",
|
|
"homepage": "https://github.com/LLK/scratch-vm#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/LLK/scratch-vm.git"
|
|
},
|
|
"main": "./dist.js",
|
|
"scripts": {
|
|
"postinstall": "./node_modules/.bin/webpack",
|
|
"start": "webpack-dev-server --host 0.0.0.0 --content-base .",
|
|
"test": "make test"
|
|
},
|
|
"dependencies": {
|
|
"expose-loader": "0.7.1",
|
|
"htmlparser2": "3.9.0",
|
|
"json-loader": "0.5.4",
|
|
"promise": "7.1.1",
|
|
"webpack": "1.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "2.7.0",
|
|
"highlightjs": "8.7.0",
|
|
"scratch-blocks": "git+https://git@github.com/LLK/scratch-blocks.git#develop",
|
|
"scratch-render": "git+https://git@github.com/LLK/scratch-render.git#develop",
|
|
"stats.js": "0.16.0",
|
|
"tap": "5.7.1",
|
|
"webpack-dev-server": "1.14.1"
|
|
}
|
|
}
|