feat: docker compose maybe
This commit is contained in:
21
node_modules/known-css-properties/LICENSE
generated
vendored
Normal file
21
node_modules/known-css-properties/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 Mavrix Technologies
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
48
node_modules/known-css-properties/README.md
generated
vendored
Normal file
48
node_modules/known-css-properties/README.md
generated
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
<p align="center"><img src="logo.png" width="200" height="200" alt="logo" /></p>
|
||||
|
||||
# Known CSS properties
|
||||
|
||||
List of standard and browser specific CSS properties.
|
||||
|
||||
[](https://github.com/known-css/known-css-properties/blob/master/LICENSE)
|
||||
[](https://renovateapp.com/)
|
||||
[](https://www.npmjs.com/package/known-css-properties)
|
||||
|
||||
## Sources
|
||||
|
||||
1. Standard properties (only 'REC', 'CR', 'LC', 'WD', 'FPWD', 'ED' statuses): http://www.w3.org/Style/CSS/all-properties.en.json
|
||||
2. Browser supported properties from `window.getComputedStyle` / `document.body.style`
|
||||
|
||||
## Browser versions
|
||||
|
||||
### Desktop
|
||||
|
||||
| Name | Versions |
|
||||
|---|--:|
|
||||
| Chrome | 14 - 118 |
|
||||
| Firefox | 6 - 118 |
|
||||
| Edge | 13 - 18 |
|
||||
| Safari | 6, 6.2, 7 - 9, 9.1, 10.0, 11.0, 11.1, 12.0, 12.1, 13.0, 13.1, 14, 14.1, 15.1, 15.4, 16.0, 16.5, 17.0 |
|
||||
| Internet Explorer | 8 - 11 |
|
||||
| Opera | 12.10, 12.14, 12.15, 12.16, 36 - 40, 45, 56, 58 |
|
||||
|
||||
### Mobile
|
||||
| Name | Versions |
|
||||
|---|--:|
|
||||
| iOS Safari | 6 - 8, 8.3, 9.0, 9.3, 10.0, 10.2, 10.3, 11.0, 11.2, 11.3, 11.4, 12.0 , 12.1, 13.1, 14, 14.1, 15.1, 15.4, 15.6, 16.0, 16.4, 17.0 |
|
||||
| Chrome for Android | 30, 35, 37, 44, 46, 51, 55 - 62, 64, 66 - 76, 78 - 79, 81, 83, 91, 94, 96, 100, 101, 110, 113 - 114, 117 |
|
||||
| Firefox for Android | 47, 52 - 54, 57, 58, 62 - 64, 66, 68, 81, 85, 91, 99, 101, 106, 110, 115, 118 |
|
||||
| IE mobile | 11 |
|
||||
| Opera Mobile | 42.7, 43, 47.1, 73.2 |
|
||||
| Samsung Internet | 4.0, 6.4, 7.4, 8.2, 9.0, 14.2, 19.0, 22.0 |
|
||||
| UC Browser for Android | 11.2, 12.9, 12.10, 13.1, 13.4 |
|
||||
|
||||
## JavaScript API
|
||||
|
||||
```js
|
||||
const properties = require('known-css-properties').all;
|
||||
```
|
||||
|
||||
## Thanks
|
||||
|
||||
We use [SauceLabs](https://saucelabs.com) live testing solution for gathering most of the data.
|
1229
node_modules/known-css-properties/data/all.json
generated
vendored
Normal file
1229
node_modules/known-css-properties/data/all.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
node_modules/known-css-properties/index.d.ts
generated
vendored
Normal file
3
node_modules/known-css-properties/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
declare module "known-css-properties" {
|
||||
export const all: string[];
|
||||
}
|
1
node_modules/known-css-properties/index.js
generated
vendored
Normal file
1
node_modules/known-css-properties/index.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
module.exports.all = require('./data/all.json').properties;
|
56
node_modules/known-css-properties/package.json
generated
vendored
Normal file
56
node_modules/known-css-properties/package.json
generated
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "known-css-properties",
|
||||
"version": "0.29.0",
|
||||
"description": "List of known CSS properties",
|
||||
"repository": "known-css/known-css-properties",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"bump": "npm version patch && npm publish && git push && git push --tags",
|
||||
"download-w3c-data": "node scripts/download-w3c-data",
|
||||
"generate": "node scripts/generate",
|
||||
"lint": "eslint index.js scripts/*.js",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"properties",
|
||||
"w3c",
|
||||
"chrome",
|
||||
"firefox",
|
||||
"explorer",
|
||||
"edge",
|
||||
"safari",
|
||||
"opera",
|
||||
"samsung-internet",
|
||||
"uc-browser"
|
||||
],
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Krzysztof Bebenek",
|
||||
"email": "kbebenek@kbebenek.me",
|
||||
"url": "http://kbebenek.me"
|
||||
},
|
||||
{
|
||||
"name": "Viorel Cojocaru",
|
||||
"email": "vio@beanon.com",
|
||||
"url": "http://beanon.com"
|
||||
}
|
||||
],
|
||||
"author": {
|
||||
"name": "Viorel Cojocaru",
|
||||
"email": "vio@beanon.com",
|
||||
"url": "http://beanon.com"
|
||||
},
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/known-css/known-css-properties/issues"
|
||||
},
|
||||
"homepage": "https://github.com/known-css/known-css-properties#readme",
|
||||
"devDependencies": {
|
||||
"axios": "0.27.2",
|
||||
"eslint": "8.51.0",
|
||||
"globby": "13.2.2",
|
||||
"lodash.sortby": "4.7.0",
|
||||
"lodash.uniq": "4.5.0"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user