Skip to content
Snippets Groups Projects
package.json 2.41 KiB
Newer Older
Ray Schamp's avatar
Ray Schamp committed
{
  "name": "scratch-gui",
  "version": "0.1.0",
  "description": "GraphicaL User Interface for creating and running Scratch 3.0 projects",
  "main": "./src/index.js",
  "scripts": {
    "build": "npm run clean && webpack --progress --colors --bail",
    "clean": "rimraf ./build && mkdirp build",
    "deploy": "touch build/.nojekyll && gh-pages -t -d build -m \"Build for $(git log --pretty=format:%H -n1)\"",
Ray Schamp's avatar
Ray Schamp committed
    "lint": "eslint . --ext .js,.jsx",
    "start": "webpack-dev-server",
Ray Schamp's avatar
Ray Schamp committed
  },
  "author": "Massachusetts Institute of Technology",
  "license": "BSD-3-Clause",
  "homepage": "https://github.com/LLK/scratch-gui#readme",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/LLK/scratch-gui.git"
  },
  "peerDependencies": {
Ray Schamp's avatar
Ray Schamp committed
    "react": "^15",
    "react-dom": "^15"
Ray Schamp's avatar
Ray Schamp committed
  "devDependencies": {
DD Liu's avatar
DD Liu committed
Susie Sahim's avatar
Susie Sahim committed
    "jest": "^20.0.4",
Ray Schamp's avatar
Ray Schamp committed
  }
}