forked from dsenkus/caniuse-cli
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@bramus/caniuse-cli",
"version": "1.1.9",
"description": "Command line tool for “Can I Use…” and MDN Browser Compat Data",
"keywords": [
"support",
"css",
"js",
"html5",
"svg",
"compat",
"interop"
],
"main": "index.js",
"bin": {
"caniuse": "./index.js"
},
"scripts": {
"update-data": "npm update --save caniuse-db @mdn/browser-compat-data && git add package.json && git commit -m \"Update caniuse-db and/or BCD\"",
"lint": "eslint index.js",
"lintfix": "eslint --fix index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bramus",
"license": "MIT",
"dependencies": {
"@mdn/browser-compat-data": "^5.6.11",
"caniuse-db": "^1.0.30001675",
"cli-color": "^1.4.0",
"omelette": "^0.4.17",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bramus/caniuse-cli.git"
}
}