CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json46 linesDownload Raw Back to browserslist
1{2  "name": "browserslist",3  "version": "4.28.4",4  "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",5  "keywords": [6    "browsers",7    "caniuse",8    "target"9  ],10  "license": "MIT",11  "author": "Andrey Sitnik <andrey@sitnik.es>",12  "repository": "browserslist/browserslist",13  "funding": [14    {15      "type": "opencollective",16      "url": "https://opencollective.com/browserslist"17    },18    {19      "type": "tidelift",20      "url": "https://tidelift.com/funding/github/npm/browserslist"21    },22    {23      "type": "github",24      "url": "https://github.com/sponsors/ai"25    }26  ],27  "bin": {28    "browserslist": "cli.js"29  },30  "browser": {31    "./node.js": "./browser.js",32    "path": false33  },34  "types": "./index.d.ts",35  "dependencies": {36    "baseline-browser-mapping": "^2.10.38",37    "caniuse-lite": "^1.0.30001799",38    "electron-to-chromium": "^1.5.376",39    "node-releases": "^2.0.48",40    "update-browserslist-db": "^1.2.3"41  },42  "engines": {43    "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"44  }45}46