Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

39
node_modules/known-css-properties/README.md generated vendored Normal file
View File

@@ -0,0 +1,39 @@
# CSS properties
List of standard and browser specific CSS properties.
## Source
1. Standard properties (only 'CR', 'WD', 'FPWD', 'LC', 'REC' statuses): http://www.w3.org/Style/CSS/all-properties.en.json
2. Browser supported properties from `window.getComputedStyle` / `document.body.style`:
### Windows
| | XP | 7 | 8 | 10 |
| ----------------- | ------ | ------ | ------ | ------ |
| Chrome | 18-49 | 18-50 | 22-50 | 37-52 |
| Firefox | 6-45 | 6-45 | 16-45 | 32-46 |
| Internet Explorer | | 8-11 | 10-11 | 11 |
| Edge | | | | 13 |
### OSX
| | 10.6 | 10.11 |
| ----------------- | ----- | ------ |
| Chrome | 14-49 | 14-54 |
| Firefox | 6-42 | 6-48 |
### Others:
- Safari: 6, 6.2, 7, 8, 9, 9.1, 10.0
- Mobile Safari: 6, 7, 8, 8.3, 9.0, 9.3, 10.0
- Chrome Android: 30, 35, 37, 46
- Firefox mobile: 47
- IE mobile: 11
- Opera Win XP: 12.10, 12.14, 12.15, 12.16
- Opera Win 8: 36-38
- Opera OSX: 36-40
### JavaScript API
```js
const properties = require('known-css-properties').all;
```

1001
node_modules/known-css-properties/data/all.json generated vendored Normal file

File diff suppressed because it is too large Load Diff

1
node_modules/known-css-properties/index.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports.all = require('./data/all').properties;

88
node_modules/known-css-properties/package.json generated vendored Normal file
View File

@@ -0,0 +1,88 @@
{
"_args": [
[
"known-css-properties@^0.0.6",
"/Users/pmarsceill/_projects/just-the-docs/node_modules/stylelint"
]
],
"_from": "known-css-properties@>=0.0.6 <0.0.7",
"_id": "known-css-properties@0.0.6",
"_inCache": true,
"_installable": true,
"_location": "/known-css-properties",
"_nodeVersion": "7.0.0",
"_npmOperationalInternal": {
"host": "packages-18-east.internal.npmjs.com",
"tmp": "tmp/known-css-properties-0.0.6.tgz_1480254728442_0.05838950187899172"
},
"_npmUser": {
"email": "vio@beanon.com",
"name": "vio"
},
"_npmVersion": "3.10.8",
"_phantomChildren": {},
"_requested": {
"name": "known-css-properties",
"raw": "known-css-properties@^0.0.6",
"rawSpec": "^0.0.6",
"scope": null,
"spec": ">=0.0.6 <0.0.7",
"type": "range"
},
"_requiredBy": [
"/stylelint"
],
"_resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.0.6.tgz",
"_shasum": "71a0b8fde1b6e3431c471efbc3d9733faebbcfbf",
"_shrinkwrap": null,
"_spec": "known-css-properties@^0.0.6",
"_where": "/Users/pmarsceill/_projects/just-the-docs/node_modules/stylelint",
"author": {
"email": "vio@mavrix.es",
"name": "Viorel Cojocaru"
},
"bugs": {
"url": "https://github.com/betit/known-css-properties/issues"
},
"dependencies": {},
"description": "List of known CSS properties",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "71a0b8fde1b6e3431c471efbc3d9733faebbcfbf",
"tarball": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.0.6.tgz"
},
"gitHead": "8c25c33d0dac55a1372270c101dd347fe5e54f65",
"homepage": "https://github.com/betit/known-css-properties#readme",
"keywords": [
"chrome",
"css",
"edge",
"explorer",
"firefox",
"opera",
"properies",
"safari",
"w3c"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "vio",
"email": "vio@beanon.com"
}
],
"name": "known-css-properties",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/betit/known-css-properties.git"
},
"scripts": {
"bump": "npm version patch && npm publish && git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "0.0.6"
}