diff options
| author | ruki <waruqi@gmail.com> | 2018-11-08 00:38:48 +0800 |
|---|---|---|
| committer | ruki <waruqi@gmail.com> | 2018-11-07 21:53:09 +0800 |
| commit | 26105034da4fcce7ac883c899d781f016559310d (patch) | |
| tree | c459a5dc4e3aa0972d9919033ece511ce76dd129 /node_modules/vendors | |
| parent | 2c77f00f1a7ecb6c8192f9c16d3b2001b254a107 (diff) | |
| download | xmake-docs-26105034da4fcce7ac883c899d781f016559310d.tar.gz xmake-docs-26105034da4fcce7ac883c899d781f016559310d.zip | |
switch to vuepress
Diffstat (limited to 'node_modules/vendors')
| -rw-r--r-- | node_modules/vendors/LICENSE | 22 | ||||
| -rw-r--r-- | node_modules/vendors/index.json | 17 | ||||
| -rw-r--r-- | node_modules/vendors/package.json | 68 | ||||
| -rw-r--r-- | node_modules/vendors/readme.md | 65 |
4 files changed, 172 insertions, 0 deletions
diff --git a/node_modules/vendors/LICENSE b/node_modules/vendors/LICENSE new file mode 100644 index 00000000..8d8660d3 --- /dev/null +++ b/node_modules/vendors/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com> + +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. diff --git a/node_modules/vendors/index.json b/node_modules/vendors/index.json new file mode 100644 index 00000000..2edf3a65 --- /dev/null +++ b/node_modules/vendors/index.json @@ -0,0 +1,17 @@ +[ + "ah", + "apple", + "atsc", + "epub", + "hp", + "khtml", + "moz", + "ms", + "o", + "rim", + "ro", + "tc", + "wap", + "webkit", + "xv" +] diff --git a/node_modules/vendors/package.json b/node_modules/vendors/package.json new file mode 100644 index 00000000..5e235e04 --- /dev/null +++ b/node_modules/vendors/package.json @@ -0,0 +1,68 @@ +{ + "name": "vendors", + "version": "1.0.2", + "description": "List of vendor prefixes known to the web platform", + "license": "MIT", + "keywords": [ + "css", + "html", + "dom", + "web", + "platform", + "vendor", + "prefix", + "prefixes" + ], + "repository": "wooorm/vendors", + "bugs": "https://github.com/wooorm/vendors/issues", + "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)", + "contributors": [ + "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)" + ], + "main": "index.json", + "files": [ + "index.json" + ], + "dependencies": {}, + "devDependencies": { + "browserify": "^16.0.0", + "esmangle": "^1.0.0", + "prettier": "^1.12.1", + "remark-cli": "^5.0.0", + "remark-preset-wooorm": "^4.0.0", + "tape": "^4.4.0", + "xo": "^0.20.0" + }, + "scripts": { + "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix", + "build-bundle": "browserify index.json -s vendors > vendors.js", + "build-mangle": "esmangle vendors.js > vendors.min.js", + "build": "npm run build-bundle && npm run build-mangle", + "test-api": "node test", + "test": "npm run format && npm run build && npm run test-api" + }, + "prettier": { + "tabWidth": 2, + "useTabs": false, + "singleQuote": true, + "bracketSpacing": false, + "semi": false, + "trailingComma": "none" + }, + "xo": { + "prettier": true, + "esnext": false, + "rules": { + "no-var": "off", + "prefer-arrow-callback": "off" + }, + "ignores": [ + "vendors.js" + ] + }, + "remarkConfig": { + "plugins": [ + "preset-wooorm" + ] + } +} diff --git a/node_modules/vendors/readme.md b/node_modules/vendors/readme.md new file mode 100644 index 00000000..fbfcf61b --- /dev/null +++ b/node_modules/vendors/readme.md @@ -0,0 +1,65 @@ +# vendors [![Build Status][travis-badge]][travis] + +<!--lint disable no-html--> + +List of (real<sup>†</sup>) vendor prefixes known to the web platform. +From [Wikipedia][wiki] and the [CSS 2.1 spec][spec]. + +† — real, as in, `mso-` and `prince-` are not included because they are +not valid. + +## Installation + +[npm][]: + +```bash +npm install vendors +``` + +## Usage + +```javascript +var vendors = require('vendors') + +console.log(vendors) +``` + +Yields: + +```js +[ 'ah', + 'apple', + 'atsc', + 'epub', + 'hp', + 'khtml', + 'moz', + 'ms', + 'o', + 'rim', + 'ro', + 'tc', + 'wap', + 'webkit', + 'xv' ] +``` + +## License + +[MIT][license] © [Titus Wormer][author] + +<!-- Definitions --> + +[travis-badge]: https://img.shields.io/travis/wooorm/vendors.svg + +[travis]: https://travis-ci.org/wooorm/vendors + +[npm]: https://docs.npmjs.com/cli/install + +[license]: LICENSE + +[author]: http://wooorm.com + +[wiki]: https://en.wikipedia.org/wiki/CSS_filter#Prefix_filters + +[spec]: https://www.w3.org/TR/CSS21/syndata.html#vendor-keyword-history |
