css-sniff
Version:
Extracts matching CSS Rules (Selectors) that apply to elements
49 lines (48 loc) • 938 B
JSON
{
"name": "css-sniff",
"version": "2.0.0",
"description": "Extracts matching CSS Rules (Selectors) that apply to elements",
"main": "build/index.js",
"homepage": "https://github.com/holloway/css-sniff",
"scripts": {
"build": "babel src --out-dir build",
"test": "jest"
},
"engines": {
"node": "10.14.2"
},
"keywords": [
"css",
"scraper",
"cssom",
"selector",
"crucial",
"jsdom",
"property",
"rule",
"match"
],
"author": "Matthew Holloway",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"jest": "^24.0.0",
"jsdom": "^13.1.0",
"split-css-selector": "^1.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
]
]
}
}