{ "name": "scratch-paint", "version": "0.2.0", "description": "Graphical User Interface for the Scratch 3.0 paint editor, which is used to make and edit sprites for use in projects.", "main": "./dist/scratch-paint.js", "scripts": { "build": "npm run clean && webpack --progress --colors --bail", "clean": "rimraf ./dist && mkdirp dist && rimraf ./playground && mkdirp playground", "deploy": "touch playground/.nojekyll && gh-pages -t -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"", "i18n:src": "babel src > tmp.js && rimraf tmp.js && ./scripts/build-i18n-source.js ./translations/messages/ ./translations/", "lint": "eslint . --ext .js,.jsx", "start": "webpack-dev-server", "test": "npm run lint && npm run unit && NODE_ENV=production npm run build", "unit": "jest", "watch": "webpack --progress --colors --watch" }, "author": "Massachusetts Institute of Technology", "license": "BSD-3-Clause", "homepage": "https://github.com/LLK/scratch-paint#readme", "repository": { "type": "git", "url": "git+ssh://git@github.com/LLK/scratch-paint.git" }, "peerDependencies": { "react": "^16", "react-dom": "^16" }, "devDependencies": { "@scratch/paper": "0.11.20180329192534", "autoprefixer": "8.1.0", "babel-cli": "6.26.0", "babel-core": "^6.23.1", "babel-eslint": "^8.2.1", "babel-jest": "^22.2.2", "babel-loader": "^7.1.0", "babel-plugin-react-intl": "2.4.0", "babel-plugin-transform-object-rest-spread": "^6.22.0", "babel-preset-es2015": "^6.22.0", "babel-preset-react": "^6.22.0", "canvas-prebuilt": "^1.6.5-prerelease.1", "classnames": "2.2.5", "css-loader": "0.28.10", "enzyme": "^3.1.0", "enzyme-adapter-react-16": "^1.0.1", "eslint": "^4.4.1", "eslint-config-import": "^0.13.0", "eslint-config-scratch": "^5.0.0", "eslint-plugin-import": "^2.9.0", "eslint-plugin-react": "^7.2.1", "gh-pages": "github:rschamp/gh-pages#publish-branch-to-subfolder", "html-webpack-plugin": "3.0.6", "jest": "^22.2.2", "keymirror": "0.1.1", "lodash.bindall": "4.4.0", "lodash.defaultsdeep": "4.6.0", "minilog": "3.1.0", "mkdirp": "^0.5.1", "paper": "0.11.5", "parse-color": "1.0.0", "postcss-import": "^11.0.0", "postcss-loader": "^2.0.5", "postcss-simple-vars": "^4.0.0", "prop-types": "^15.5.10", "raf": "^3.4.0", "react": "16.2.0", "react-dom": "16.2.0", "react-intl": "2.4.0", "react-intl-redux": "0.7.0", "react-popover": "0.5.4", "react-redux": "5.0.7", "react-responsive": "4.0.5", "react-style-proptype": "3.2.1", "react-test-renderer": "^16.0.0", "react-tooltip": "3.4.0", "redux": "3.7.2", "redux-mock-store": "^1.2.3", "redux-throttle": "0.1.1", "regenerator-runtime": "^0.11.1", "rimraf": "^2.6.1", "scratch-l10n": "^2.0.0", "style-loader": "^0.20.1", "svg-url-loader": "^2.2.0", "tap": "^11.1.0", "url-loader": "^0.6.2", "webpack": "^3.5.4", "webpack-dev-server": "^2.7.0" }, "jest": { "setupFiles": [ "raf/polyfill", "/test/helpers/enzyme-setup.js" ], "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "/test/__mocks__/fileMock.js", "\\.(css|less)$": "/test/__mocks__/styleMock.js" } } }