mirror of
https://github.com/morris/vanilla-todo.git
synced 2025-01-16 20:28:22 +01:00
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "vanilla-todo",
|
|
"version": "0.1.0",
|
|
"description": "A TeuxDeux clone in plain HTML, CSS and JavaScript (no build steps)",
|
|
"keywords": [
|
|
"vanilla",
|
|
"html",
|
|
"css",
|
|
"javascript"
|
|
],
|
|
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
|
|
"license": "ISC",
|
|
"homepage": "https://github.com/morris/vanilla-todo#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/morris/vanilla-todo.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/morris/vanilla-todo/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "s4d public --spa",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check .",
|
|
"lint": "eslint .",
|
|
"lint-styles": "stylelint public/styles/*",
|
|
"test": "playwright test --project Chromium",
|
|
"test-coverage": "bash scripts/test-coverage.sh",
|
|
"test-e2e": "playwright test",
|
|
"test-ui": "playwright test --ui"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.17.0",
|
|
"@playwright/test": "^1.33.0",
|
|
"c8": "^10.1.2",
|
|
"eslint": "^9.17.0",
|
|
"eslint-plugin-compat": "^6.0.2",
|
|
"prettier": "^3.1.0",
|
|
"s4d": "^0.2.0",
|
|
"stylelint": "^16.12.0",
|
|
"stylelint-config-standard": "^36.0.1"
|
|
},
|
|
"browserslist": [
|
|
"defaults",
|
|
"not op_mini all"
|
|
]
|
|
}
|