@theholocron/browserslist-config 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Browserslist Config
2
+
3
+ A [browserslist configuration](https://github.com/browserslist/browserslist#shareable-configs) for all browsers and devices supported.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install --save-dev @theholocron/browserslist-config
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ In your project `package.json` add the following:
14
+
15
+ ```json
16
+ {
17
+ "browserslist": [
18
+ "extends @theholocron/browserslist-config"
19
+ ]
20
+ }
21
+ ```
22
+
23
+ ## Which Browsers & Devices We Support
24
+
25
+ Read which [browsers & devices](https://docs.theholocron.dev/reference/browsers/) we support.
@@ -0,0 +1,9 @@
1
+ [
2
+ "> 0.3%",
3
+ "last 2 chrome versions",
4
+ "last 2 edge versions",
5
+ "last 2 firefox versions",
6
+ "last 2 safari versions",
7
+ "not op_mini all",
8
+ "not dead"
9
+ ]
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require("./browserslistrc.json");
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@theholocron/browserslist-config",
3
+ "homepage": "https://github.com/theholocron/configs/tree/master/packages/browserslist-config#readme",
4
+ "description": "A Browserslist configuration for all browsers and devices supported in the Galaxy.",
5
+ "author": "Newton Koumantzelis",
6
+ "version": "1.16.0",
7
+ "main": "index.js",
8
+ "files": [
9
+ "browserslistrc.json",
10
+ "index.js"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/theholocron/configs.git"
15
+ },
16
+ "bugs": "https://github.com/theholocron/configs/issues",
17
+ "releases": "https://github.com/theholocron/configs/releases",
18
+ "wiki": "https://github.com/theholocron/configs/wiki",
19
+ "license": "GPL-3.0",
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "scripts": {
24
+ "lint": "npx browserslist-lint"
25
+ },
26
+ "dependencies": {
27
+ "browserslist": "^4.24.0"
28
+ }
29
+ }