-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
65 lines (65 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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 <[email protected]>"
],
"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"
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "^0.0.4",
"@lhci/cli": "^0.10.0",
"@open-wc/testing": "^3.1.6",
"@size-limit/preset-small-lib": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@web/dev-server-esbuild": "^0.3.2",
"@web/test-runner": "^0.14.0",
"eslint": "^8.23.0",
"eslint-plugin-github": "^4.3.7",
"sinon": "^14.0.0",
"size-limit": "^8.0.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"size-limit": [
{
"path": "lib/index.js",
"import": "{controller, attr, target, targets}",
"limit": "2.5kb"
},
{
"path": "lib/abilities.js",
"import": "{providable}",
"limit": "1.5kb"
}
]
}