You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.9 KiB
71 lines
1.9 KiB
{ |
|
"name": "cssstyle", |
|
"description": "CSSStyleDeclaration Object Model implementation", |
|
"keywords": [ |
|
"CSS", |
|
"CSSStyleDeclaration", |
|
"StyleSheet" |
|
], |
|
"version": "4.1.0", |
|
"homepage": "https://github.com/jsdom/cssstyle", |
|
"maintainers": [ |
|
{ |
|
"name": "Jon Sakas", |
|
"email": "jon.sakas@gmail.com", |
|
"url": "https://jon.sakas.co/" |
|
}, |
|
{ |
|
"name": "Rafał Ruciński", |
|
"email": "fatfisz@gmail.com", |
|
"url": "https://fatfisz.com" |
|
} |
|
], |
|
"contributors": [ |
|
{ |
|
"name": "Chad Walker", |
|
"email": "chad@chad-cat-lore-eddie.com", |
|
"url": "https://github.com/chad3814" |
|
} |
|
], |
|
"repository": "jsdom/cssstyle", |
|
"bugs": "https://github.com/jsdom/cssstyle/issues", |
|
"directories": { |
|
"lib": "./lib" |
|
}, |
|
"files": [ |
|
"lib/" |
|
], |
|
"main": "./lib/CSSStyleDeclaration.js", |
|
"dependencies": { |
|
"rrweb-cssom": "^0.7.1" |
|
}, |
|
"devDependencies": { |
|
"@babel/generator": "^7.25.6", |
|
"@babel/parser": "^7.25.6", |
|
"@babel/traverse": "^7.25.6", |
|
"@babel/types": "^7.25.6", |
|
"eslint": "^9.10.0", |
|
"eslint-config-prettier": "^9.1.0", |
|
"eslint-plugin-prettier": "^5.2.1", |
|
"globals": "^15.9.0", |
|
"npm-run-all": "^4.1.5", |
|
"prettier": "^3.3.3", |
|
"resolve": "^1.22.1" |
|
}, |
|
"scripts": { |
|
"download": "node ./scripts/downloadLatestProperties.mjs && eslint lib/allProperties.js --fix", |
|
"generate": "run-p generate:*", |
|
"generate:implemented_properties": "node ./scripts/generateImplementedProperties.mjs", |
|
"generate:properties": "node ./scripts/generate_properties.js", |
|
"lint": "npm run generate && eslint --max-warnings 0", |
|
"lint:fix": "eslint --fix --max-warnings 0", |
|
"prepublishOnly": "npm run lint && npm run test", |
|
"test": "npm run generate && node --test", |
|
"test-ci": "npm run lint && npm run test", |
|
"update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS" |
|
}, |
|
"license": "MIT", |
|
"engines": { |
|
"node": ">=18" |
|
} |
|
}
|
|
|