scratch-render/package.json
Christopher Willis-Ford 53147d7e39 Remove createSkinFromURL and related code
Changes:
- Removed the `createSkinFromURL` method.
- Removed `skin` property handling from `updateDrawableProperties`.
- Removed the URL-to-skin mapping cache.
- Removed `RenderConstants` items related to choosing a default skin.
- Removed `xhr` package dependency.
- `Drawable` now starts with a `null` skin instead of a default skin.
- `DrawThese` now skips any item with a `null` skin.
2017-03-09 09:59:16 -08:00

50 lines
1.6 KiB
JSON

{
"name": "scratch-render",
"version": "0.1.0",
"description": "WebGL Renderer for Scratch 3.0",
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"homepage": "https://github.com/LLK/scratch-render#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LLK/scratch-render.git"
},
"main": "./dist/node/scratch-render.js",
"scripts": {
"build": "webpack --progress --colors",
"docs": "jsdoc -c .jsdoc.json",
"lint": "eslint .",
"prepublish": "npm run build",
"prepublish-watch": "npm run watch",
"start": "webpack-dev-server",
"test": "npm run lint && npm run docs",
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"",
"watch": "webpack --progress --colors --watch --watch-poll"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"base64-loader": "^1.0.0",
"copy-webpack-plugin": "^4.0.1",
"docdash": "^0.4.0",
"eslint": "^3.16.1",
"eslint-config-scratch": "^3.1.0",
"gh-pages": "^0.12.0",
"hull.js": "0.2.10",
"jsdoc": "^3.4.3",
"json": "9.0.4",
"json-loader": "^0.5.4",
"lodash.defaultsdeep": "4.6.0",
"raw-loader": "^0.5.1",
"scratch-render-fonts": "git+https://github.com/LLK/scratch-render-fonts.git",
"tap": "^10.3.0",
"travis-after-all": "^1.4.4",
"twgl.js": "3.2.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}