forked from WICG/focus-visible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "@userlike/focus-visible",
"version": "6.0.0-3",
"description": "Polyfill for :focus-visible pseudo-selector",
"scripts": {
"build": "rollup -c",
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"src/focus-visible.ts": [
"eslint"
],
"*.{ts}": [
"prettier --write"
]
},
"main": "dist/cjs/focus-visible.js",
"module": "dist/es/focus-visible.js",
"types": "dist/types/focus-visible.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/userlike/focus-visible.git"
},
"author": "Userlike",
"license": "W3C",
"bugs": {
"url": "https://github.com/userlike/focus-visible/issues"
},
"homepage": "https://github.com/userlike/focus-visible",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-es5": "^1.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rollup": "^2.68.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.5"
}
}