io-repl
Version:
A mini Python REPL for the browser
71 lines (70 loc) • 1.73 kB
JSON
{
"name": "io-repl",
"version": "0.1.1",
"author": "Suzen Fylke",
"description": "A mini Python REPL for the browser",
"keywords": [
"Pyodide",
"Python",
"repl",
"web-components"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codesue/io.git"
},
"bugs": {
"url": "https://github.com/codesue/io/issues"
},
"homepage": "https://github.com/codesue/io#readme",
"type": "module",
"main": "io-repl.js",
"module": "io-repl.js",
"files": [
"io-repl.js",
"io-repl.css"
],
"scripts": {
"analyze": "cem analyze",
"start": "web-dev-server",
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.17",
"@open-wc/eslint-config": "^9.2.1",
"@open-wc/testing": "^3.0.0-next.5",
"@web/dev-server": "^0.1.34",
"@web/test-runner": "^0.14.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}