aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/cssstyle/package.json
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 21:34:48 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 21:34:48 -0800
commit76cb9c2a39d477a64824a985ade40507e3bbade1 (patch)
tree41e997aa9c6f538d3a136af61dae9424db2005a9 /vanilla/node_modules/cssstyle/package.json
parent819a39a21ac992b1393244a4c283bbb125208c69 (diff)
downloadneko-76cb9c2a39d477a64824a985ade40507e3bbade1.tar.gz
neko-76cb9c2a39d477a64824a985ade40507e3bbade1.tar.bz2
neko-76cb9c2a39d477a64824a985ade40507e3bbade1.zip
feat(vanilla): add testing infrastructure and tests (NK-wjnczv)
Diffstat (limited to 'vanilla/node_modules/cssstyle/package.json')
-rw-r--r--vanilla/node_modules/cssstyle/package.json53
1 files changed, 53 insertions, 0 deletions
diff --git a/vanilla/node_modules/cssstyle/package.json b/vanilla/node_modules/cssstyle/package.json
new file mode 100644
index 0000000..43f28dd
--- /dev/null
+++ b/vanilla/node_modules/cssstyle/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "cssstyle",
+ "description": "An implementation of the CSSStyleDeclaration class from the CSS Object Model specification",
+ "keywords": [
+ "CSS",
+ "CSSStyleDeclaration",
+ "StyleSheet"
+ ],
+ "version": "5.3.7",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jsdom/cssstyle.git"
+ },
+ "files": [
+ "lib/"
+ ],
+ "main": "./lib/CSSStyleDeclaration.js",
+ "dependencies": {
+ "@asamuzakjp/css-color": "^4.1.1",
+ "@csstools/css-syntax-patches-for-csstree": "^1.0.21",
+ "css-tree": "^3.1.0",
+ "lru-cache": "^11.2.4"
+ },
+ "devDependencies": {
+ "@babel/generator": "^7.28.5",
+ "@babel/parser": "^7.28.5",
+ "@babel/traverse": "^7.28.5",
+ "@babel/types": "^7.28.5",
+ "@domenic/eslint-config": "^4.0.1",
+ "@webref/css": "^8.1.1",
+ "eslint": "^9.39.1",
+ "eslint-config-prettier": "^10.1.8",
+ "eslint-plugin-prettier": "^5.5.4",
+ "globals": "^16.5.0",
+ "npm-run-all": "^4.1.5",
+ "prettier": "^3.7.4",
+ "resolve": "^1.22.11"
+ },
+ "scripts": {
+ "download": "node ./scripts/downloadLatestProperties.mjs",
+ "lint": "eslint --max-warnings 0",
+ "lint:fix": "eslint --fix --max-warnings 0",
+ "prepare": "run-p prepare:*",
+ "prepare:implemented_properties": "node ./scripts/generateImplementedProperties.mjs",
+ "prepare:properties": "node ./scripts/generateProperties.js",
+ "prepare:propertyDefinitions": "node ./scripts/generatePropertyDefinitions.mjs",
+ "test": "node --test"
+ },
+ "license": "MIT",
+ "engines": {
+ "node": ">=20"
+ }
+}