catalyst/package.json

66 строки
1.8 KiB
JSON

{
"name": "@github/catalyst",
"version": "1.3.0",
"description": "Helpers for creating HTML Elements as Controllers",
"homepage": "https://github.github.io/catalyst",
"bugs": {
"url": "https://github.com/github/catalyst/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/catalyst.git"
},
"license": "MIT",
"author": "GitHub Inc.",
"contributors": [
"Keith Cirkel (https://keithcirkel.co.uk/)",
"Kristján Oddsson <koddsson@gmail.com>"
],
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:docs": "cd docs && JEKYLL_ENV=production bundle exec jekyll build",
"clean": "tsc --build --clean tsconfig.build.json",
"lint": "eslint . --ignore-path .gitignore",
"postlint": "tsc",
"prepack": "npm run build",
"presize": "npm run build",
"size": "size-limit",
"test": "web-test-runner test/* --node-resolve"
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "^0.0.4",
"@lhci/cli": "^0.9.0",
"@open-wc/testing": "^3.1.4",
"@size-limit/preset-small-lib": "^7.0.8",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@web/dev-server-esbuild": "^0.3.0",
"@web/test-runner": "^0.13.27",
"eslint": "^8.14.0",
"eslint-plugin-github": "^4.3.6",
"sinon": "^13.0.1",
"size-limit": "^7.0.8",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"size-limit": [
{
"path": "lib/index.js",
"import": "{controller, attr, target, targets}",
"limit": "2.5kb"
},
{
"path": "lib/abilities.js",
"import": "{providable}",
"limit": "1.1kb"
}
]
}