UNPKG

2.31 kBJSONView Raw
1{
2 "name": "eslint-plugin-compat",
3 "version": "2.5.0",
4 "description": "Lint browser compatibility of API used",
5 "main": "lib/index.js",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/amilajack/eslint-plugin-compat.git"
9 },
10 "keywords": [
11 "eslint",
12 "browser",
13 "support",
14 "api",
15 "lint",
16 "caniuse",
17 "kangax"
18 ],
19 "author": "Amila Welihinda",
20 "license": "MIT",
21 "bugs": {
22 "url": "https://github.com/amilajack/eslint-plugin-compat/issues"
23 },
24 "files": [
25 "index.js",
26 "lib"
27 ],
28 "homepage": "https://github.com/amilajack/eslint-plugin-compat#readme",
29 "scripts": {
30 "build": "cross-env NODE_ENV=production rm -rf lib && babel src --out-dir lib",
31 "flow": "flow",
32 "flow-typed": "flow-typed install --ignoreDeps peer dev",
33 "lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
34 "spec": "jest",
35 "test": "cross-env NODE_ENV=test npm run spec && npm run build",
36 "test-all": "cross-env NODE_ENV=test npm run lint && npm run flow && npm run spec && npm run build",
37 "version": "npm run build"
38 },
39 "jest": {
40 "testEnvironment": "node"
41 },
42 "devDependencies": {
43 "babel-cli": "^6.26.0",
44 "babel-eslint": "^8.2.5",
45 "babel-loader": "^7.1.5",
46 "babel-plugin-add-module-exports": "^0.2.1",
47 "babel-plugin-transform-flow-strip-types": "^6.22.0",
48 "babel-plugin-transform-runtime": "^6.23.0",
49 "babel-polyfill": "^6.26.0",
50 "babel-preset-env": "^1.7.0",
51 "babel-preset-stage-0": "^6.24.1",
52 "babel-register": "^6.26.0",
53 "cross-env": "^5.2.0",
54 "download-cli": "^1.1.1",
55 "eslint": "^5.1.0",
56 "eslint-config-bliss": "^2.0.0",
57 "eslint-formatter-pretty": "^1.3.0",
58 "eslint-plugin-flowtype-errors": "^3.6.0",
59 "flow-bin": "^0.76.0",
60 "flow-typed": "^2.5.1",
61 "jest-cli": "^23.3.0"
62 },
63 "dependencies": {
64 "babel-runtime": "^6.26.0",
65 "browserslist": "^4.0.0",
66 "caniuse-db": "^1.0.30000865",
67 "mdn-browser-compat-data": "^0.0.40",
68 "requireindex": "^1.2.0"
69 },
70 "peerDependencies": {
71 "eslint": "^3.0.0 || ^4.0.0"
72 },
73 "engines": {
74 "node": ">=4.x",
75 "npm": ">=3.x"
76 },
77 "devEngines": {
78 "node": ">=4.x",
79 "npm": ">=3.x"
80 },
81 "greenkeeper": {
82 "ignore": [
83 "caniuse-db"
84 ]
85 }
86}