esm-loader-css
Version:
Chainable ESModule Loader for CSS and Preprocessors
65 lines • 1.79 kB
JSON
{
"name": "esm-loader-css",
"version": "1.0.6",
"description": "Chainable ESModule Loader for CSS and Preprocessors",
"homepage": "https://github.com/brev/esm-loaders/tree/main/packages/esm-loader-css#readme",
"license": "MIT",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"author": {
"name": "Brev Patterson",
"url": "https://github.com/brev"
},
"bugs": {
"url": "https://github.com/brev/esm-loaders/issues"
},
"dependencies": {
"create-esm-loader": "^0.2.5",
"npm-run-all": "^4.1.5",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"c8": "^8.0.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"uvu": "^0.5.6"
},
"files": [
"dist/*"
],
"keywords": [
"esm",
"esmodule",
"loader",
"chainable",
"import",
"css",
"stylesheet",
"preprocessor"
],
"repository": {
"type": "git",
"url": "https://github.com/brev/esm-loaders.git",
"directory": "packages/esm-loader-css"
},
"scripts": {
"bin:eslint": "eslint --ignore-path .gitignore .",
"bin:prettier": "prettier --ignore-path .gitignore .",
"bin:tsc": "tsc",
"bin:uvu": "NODE_OPTIONS=\"--import ./test/register.js\" uvu test .test.js",
"build": "run-s bin:tsc",
"build:watch": "run-s 'bin:tsc --watch'",
"clean": "rimraf coverage/ dist/",
"format": "run-s 'bin:prettier --write --list-different'",
"lint": "run-s 'bin:prettier --check' bin:eslint 'bin:tsc --noEmit'",
"test": "run-s build bin:uvu",
"test:cover": "c8 run-s test"
}
}