{
  "name": "@pybricks/python-program-analysis",
  "displayName": "Python parsing and program analysis",
  "main": "./dist/es5/index.js",
  "types": "./dist/es5/index.d.ts",
  "license": "MIT",
  "files": [
    "dist",
    "cfg.png"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "version": "2.0.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/pybricks/python-program-analysis.git"
  },
  "scripts": {
    "build": "yarn run build:parser && tsc && tsc -m es6 --outDir dist/es6 && webpack",
    "build:parser": "yarn node ./node_modules/jison/lib/cli.js --outfile src/python3.js src/python3.jison && cpx src/python3.js dist/es5 && cpx src/python3.js dist/es6",
    "format:all": "prettier --write \"{src,style}/**/*.{css,js,ts}\"",
    "clean": "rimraf dist",
    "test": "jest --watch",
    "prepare": "yarn run build"
  },
  "devDependencies": {
    "@types/jest": "^24.0.22",
    "@types/lodash": "^4.14.148",
    "cpx": "^1.5.0",
    "css-loader": "^1.0.1",
    "jest": "^24.9.0",
    "jison": "^0.4.18",
    "prettier": "1.17.0",
    "rimraf": "^2.6.3",
    "style-loader": "^0.21.0",
    "ts-jest": "^24.1.0",
    "ts-loader": "^6.0.1",
    "tslint": "^5.11.1",
    "tslint-microsoft-contrib": "^6.2.0",
    "typescript": "^3.5.3",
    "webpack": "^4.37.0",
    "webpack-cli": "^3.3.6"
  },
  "dependencies": {
    "lodash": "^4.17.15"
  },
  "description": "A Typescript library for parsing Pybricks MicroPython programs.",
  "bugs": {
    "url": "https://github.com/pybricks/python-program-analysis/issues"
  },
  "homepage": "https://github.com/pybricks/python-program-analysis#readme",
  "author": "",
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true
  }
}
