mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
7eb2e58a38
Authenticate with NPM via .npmrc and publish the package version + "-[git sha]". Remove vm and vm.min.js, they'll be built before the package is published to NPM and available on installation. When installing from git, the build step will run on npm install.
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
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": {
|
|
"prepublish": "./node_modules/.bin/webpack --bail",
|
|
"start": "webpack-dev-server --host 0.0.0.0 --content-base .",
|
|
"test": "make test"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "3.0.1",
|
|
"eslint": "2.7.0",
|
|
"expose-loader": "0.7.1",
|
|
"gh-pages": "0.11.0",
|
|
"highlightjs": "8.7.0",
|
|
"htmlparser2": "3.9.0",
|
|
"json-loader": "0.5.4",
|
|
"lodash.defaultsdeep": "4.6.0",
|
|
"promise": "7.1.1",
|
|
"scratch-blocks": "0.1.0-80849",
|
|
"scratch-render": "0.1.0-9f26a",
|
|
"script-loader": "0.7.0",
|
|
"stats.js": "0.16.0",
|
|
"tap": "5.7.1",
|
|
"travis-after-all": "1.4.4",
|
|
"webpack": "1.13.0",
|
|
"webpack-dev-server": "1.14.1"
|
|
}
|
|
}
|