{
	"name": "pythonlang",
	"version": "1.0.4",
	"description": "Python built-ins in Javascript.",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"scripts": {
		"start": "npm run build:live",
		"build": "tsc -p .",
		"test": "jest",
		"test:watch": "jest --watch",
		"test:int": "jest src/test/int.spec.ts",
		"test:int:watch": "jest src/test/int.spec.ts --watch",
		"coverage": "jest --coverage",
		"build:live": "nodemon --watch src/int.ts --exec ts-node -T src/int.ts"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/giladbarnea/pythonjs.git"
	},
	"keywords": ["python","python3","int","bool","range","dict","enumerate","list"],
	"author": "Gilad Barnea",
	"license": "ISC",
	"bugs": {
		"url": "https://github.com/giladbarnea/pythonjs/issues"
	},
	"homepage": "https://github.com/giladbarnea/pythonjs#readme",
	"devDependencies": {
		"@types/chance": "latest",
		"@types/jest": "^24.0.13",
		"@types/node": "^12.0.4",
		"chance": "^1.0.18",
		"jest": "^24.8.0",
		"perf_hooks": "latest",
		"ts-jest": "^24.0.2",
		"ts-node": "^8.3.0",
		"typescript": "^3.5.1"
	},
	"dependencies": {}
}
