2020-10-20 17:27:16 +02:00
|
|
|
{
|
|
|
|
"name": "vanilla-todo",
|
|
|
|
"version": "0.1.0",
|
2023-11-13 20:03:04 +01:00
|
|
|
"description": "A TeuxDeux clone in plain HTML, CSS and JavaScript (no build steps)",
|
2020-10-20 17:27:16 +02:00
|
|
|
"keywords": [
|
|
|
|
"vanilla",
|
2022-05-09 15:46:58 +02:00
|
|
|
"html",
|
2023-11-13 20:03:04 +01:00
|
|
|
"css",
|
|
|
|
"javascript"
|
2020-10-20 17:27:16 +02:00
|
|
|
],
|
|
|
|
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
|
|
|
|
"license": "ISC",
|
2023-11-13 20:03:04 +01:00
|
|
|
"homepage": "https://github.com/morris/vanilla-todo#readme",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/morris/vanilla-todo.git"
|
|
|
|
},
|
2020-10-20 17:27:16 +02:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/morris/vanilla-todo/issues"
|
|
|
|
},
|
2023-11-13 20:03:04 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=20"
|
|
|
|
},
|
2024-01-29 23:13:55 +01:00
|
|
|
"type": "module",
|
2023-11-13 20:03:04 +01:00
|
|
|
"scripts": {
|
2024-06-23 16:10:57 +02:00
|
|
|
"dev": "s4d public --spa",
|
2023-11-13 20:03:04 +01:00
|
|
|
"format": "prettier --write .",
|
|
|
|
"format-check": "prettier --check .",
|
2023-12-02 11:23:40 +01:00
|
|
|
"lint": "eslint .",
|
2023-11-13 20:03:04 +01:00
|
|
|
"lint-styles": "stylelint public/styles/*",
|
2025-01-01 15:43:57 +01:00
|
|
|
"test": "playwright test --project Chromium",
|
|
|
|
"test-coverage": "bash scripts/test-coverage.sh",
|
|
|
|
"test-e2e": "playwright test",
|
|
|
|
"test-ui": "playwright test --ui"
|
2023-11-13 20:03:04 +01:00
|
|
|
},
|
2020-10-20 17:27:16 +02:00
|
|
|
"devDependencies": {
|
2024-12-28 20:44:28 +01:00
|
|
|
"@eslint/js": "^9.17.0",
|
2023-05-13 18:20:50 +02:00
|
|
|
"@playwright/test": "^1.33.0",
|
2024-06-23 16:18:20 +02:00
|
|
|
"c8": "^10.1.2",
|
2024-12-28 20:44:28 +01:00
|
|
|
"eslint": "^9.17.0",
|
|
|
|
"eslint-plugin-compat": "^6.0.2",
|
2023-11-13 20:03:04 +01:00
|
|
|
"prettier": "^3.1.0",
|
2024-08-27 00:03:39 +02:00
|
|
|
"s4d": "^0.2.0",
|
2024-12-28 20:44:28 +01:00
|
|
|
"stylelint": "^16.12.0",
|
|
|
|
"stylelint-config-standard": "^36.0.1"
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"defaults",
|
|
|
|
"not op_mini all"
|
|
|
|
]
|
2020-10-20 17:27:16 +02:00
|
|
|
}
|