{
  "name": "jpython",
  "version": "1.0.1",
  "description": "A Python implementation in Javascript with no Python dependency.",
  "homepage": "https://github.com/sagemathinc/wapython/tree/main/packages/jpython",
  "keywords": ["javascript", "python", "language", "compiler"],
  "main": "tools/compiler.js",
  "scripts": {
    "test": "npx tsc && ./bin/jpython self --complete --test && cd bench && ../bin/jpython all.py",
    "start": "node bin/jpython",
    "build": "npx tsc && node bin/jpython self --complete",
    "tsc": "npx tsc -w",
    "clean": "rm -rf dist",
    "format": "npm run yapf && npm run prettier",
    "mypy": "git grep -l '^# mypy' | xargs mypy",
    "prettier": "prettier --write .",
    "yapf": "yapf -p -i --recursive src/output bench src/compiler.py src/parse.py src/utils.py  src/tokenizer.py"
  },
  "license": "BSD-3-Clause",
  "engines": {
    "node": ">=0.14.0"
  },
  "maintainers": [
    {
      "name": "William Stein",
      "email": "wstein@sagemath.com"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/sagemathinc/wapython"
  },
  "devDependencies": {
    "@types/node": "^16.7.10",
    "prettier": "^2.3.2",
    "typescript": "^4.7.4"
  },
  "bin": {
    "jpython": "bin/jpython"
  }
}
