-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.9 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
66
67
68
69
70
71
72
73
{
"name": "@q42/floating-focus-a11y",
"version": "1.4.0",
"description": "An a11y focus solution that is clear, beautiful and easy to implement.",
"keywords": [
"a11y",
"focus",
"floating"
],
"author": {
"name": "Ricardo Snoek",
"email": "ricardo@q42.nl",
"url": "https://q42.nl"
},
"homepage": "https://github.com/Q42/FloatingFocus",
"repository": {
"type": "git",
"url": "https://github.com/Q42/FloatingFocus.git"
},
"bugs": {
"url": "https://github.com/Q42/FloatingFocus/issues"
},
"main": "dist/styled/index.js",
"types": "index.d.ts",
"scripts": {
"ci": "npm ci --omit=optional",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --config webpack.dev.js",
"lint:check": "prettier --check ./src/**/*.{scss,js}",
"lint:fix": "prettier --write ./src/**/*.{scss,js}",
"test": "jest --verbose --coverage",
"prepublishOnly": "npm run lint:check && npm run test && npm run build"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@jest/globals": "^29.5.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.30.1",
"css-loader": "^6.7.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss-loader": "^7.2.4",
"prettier": "^2.8.7",
"regenerator-runtime": "^0.13.11",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"license": "MIT",
"files": [
"/dist",
"index.d.ts"
],
"volta": {
"node": "20.0.0"
}
}