Skip to content
Snippets Groups Projects
package.json 2.24 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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": "rm -rf ./build && mkdir -p 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",
    
    Ray Schamp's avatar
    Ray Schamp committed
        "postmerge": "opt --in postmerge --exec 'npm install'",
        "postrewrite": "opt --in postrewrite --exec 'npm install'",
    
        "prepush": "opt --in prepush --exec 'npm run lint'",
    
        "start": "webpack-dev-server",
    
        "test": "npm run lint && npm run build"
    
    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": {
        "react": "15.x.x",
        "react-dom": "15.x.x"
      },
    
    Ray Schamp's avatar
    Ray Schamp committed
      "devDependencies": {
    
    Ray Schamp's avatar
    Ray Schamp committed
    Ray Schamp's avatar
    Ray Schamp committed
    Ray Schamp's avatar
    Ray Schamp committed
    Ray Schamp's avatar
    Ray Schamp committed
    Ray Schamp's avatar
    Ray Schamp committed
        "opt-cli": "1.5.1",
    
    Ray Schamp's avatar
    Ray Schamp committed
        "webpack": "1.13.2",
    
    Ray Schamp's avatar
    Ray Schamp committed
      }
    }