aboutsummaryrefslogtreecommitdiff
path: root/node_modules/caniuse-api/package.json
diff options
context:
space:
mode:
authorruki <waruqi@gmail.com>2018-11-08 00:38:48 +0800
committerruki <waruqi@gmail.com>2018-11-07 21:53:09 +0800
commit26105034da4fcce7ac883c899d781f016559310d (patch)
treec459a5dc4e3aa0972d9919033ece511ce76dd129 /node_modules/caniuse-api/package.json
parent2c77f00f1a7ecb6c8192f9c16d3b2001b254a107 (diff)
downloadxmake-docs-26105034da4fcce7ac883c899d781f016559310d.tar.gz
xmake-docs-26105034da4fcce7ac883c899d781f016559310d.zip
switch to vuepress
Diffstat (limited to 'node_modules/caniuse-api/package.json')
-rw-r--r--node_modules/caniuse-api/package.json47
1 files changed, 47 insertions, 0 deletions
diff --git a/node_modules/caniuse-api/package.json b/node_modules/caniuse-api/package.json
new file mode 100644
index 00000000..0b7f5e56
--- /dev/null
+++ b/node_modules/caniuse-api/package.json
@@ -0,0 +1,47 @@
+{
+ "name": "caniuse-api",
+ "version": "1.6.1",
+ "description": "request the caniuse data to check browsers compatibilities",
+ "repository": "https://github.com/nyalab/caniuse-api.git",
+ "keywords": [
+ "caniuse",
+ "browserslist"
+ ],
+ "authors": [
+ "nyalab",
+ "MoOx"
+ ],
+ "license": "MIT",
+ "main": "dist/index.js",
+ "files": [
+ "dist"
+ ],
+ "dependencies": {
+ "browserslist": "^1.3.6",
+ "caniuse-db": "^1.0.30000529",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ },
+ "devDependencies": {
+ "babel-cli": "^6.22.2",
+ "babel-eslint": "^5.0.0",
+ "babel-preset-latest": "^6.22.0",
+ "babel-tape-runner": "^2.0.1",
+ "jshint": "^2.5.10",
+ "npmpub": "^3.1.0",
+ "tap-spec": "^4.1.1",
+ "tape": "^4.6.0"
+ },
+ "scripts": {
+ "build": "babel src --out-dir dist",
+ "lint": "jshint src",
+ "prepublish": "npm run build",
+ "test": "npm run lint && babel-tape-runner test/*.js | tap-spec",
+ "release": "npmpub"
+ },
+ "babel": {
+ "presets":[
+ "babel-preset-latest"
+ ]
+ }
+}