select-dom
Version:
Extra lightweight DOM selector helper
61 lines (60 loc) • 1.2 kB
JSON
{
"name": "select-dom",
"version": "9.4.0",
"description": "Extra lightweight DOM selector helper",
"keywords": [
"alternative",
"css",
"dom",
"elements",
"jquery",
"querySelector",
"querySelectorAll",
"selector"
],
"repository": "fregante/select-dom",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <me@fregante.com> (https://fregante.com)",
"type": "module",
"exports": {
".": "./index.js",
"./strict.js": "./strict.js"
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"strict.js",
"strict.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "tsc && tsd && xo && npm run test:tape",
"test:tape": "browserify -p esmify test.js | tape-run",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser"
]
},
"dependencies": {
"typed-query-selector": "^2.11.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"tape": "^5.7.0",
"tape-run": "^11.0.0",
"tsd": "^0.29.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
},
"engines": {
"node": ">=16"
}
}