basic-devtools
Version:
Exports `$`, `$$`, and `$x` utilities as described in Chrome Console Utilities API reference
54 lines (53 loc) • 1.59 kB
JSON
{
"name": "basic-devtools",
"version": "0.1.6",
"description": "Exports `$`, `$$`, and `$x` utilities as described in Chrome Console Utilities API reference",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run rollup:es && npm run rollup:index && npm run tsc && npm run test && npm run size",
"cjs": "ascjs --no-default esm cjs",
"coverage": "mkdir -p ./coverage/tmp; c8 report --reporter=text-lcov > ./coverage/lcov.info",
"rollup:es": "rollup --config rollup/es.config.js",
"rollup:index": "rollup --config rollup/index.config.js",
"size": "cat es.js | brotli | wc -c",
"test": "c8 node test/cover.cjs",
"tsc": "tsc -p ."
},
"keywords": [
"$",
"$$",
"$x",
"devtools",
"utilities"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"ascjs": "^5.0.1",
"c8": "^7.13.0",
"rollup": "^3.21.0",
"typescript": "^5.0.4"
},
"module": "./esm/index.js",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"unpkg": "es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/basic-devtools.git"
},
"bugs": {
"url": "https://github.com/WebReflection/basic-devtools/issues"
},
"homepage": "https://github.com/WebReflection/basic-devtools#readme"
}