UNPKG

2.64 kBJSONView Raw
1{
2 "name": "eslint-config-airbnb",
3 "version": "18.1.0",
4 "description": "Airbnb's ESLint config, following our styleguide",
5 "main": "index.js",
6 "scripts": {
7 "prelint": "eclint check * rules/* test/*",
8 "lint": "eslint .",
9 "pretests-only": "node ./test/requires",
10 "tests-only": "babel-tape-runner ./test/test-*.js",
11 "prepublish": "(in-install || eslint-find-rules --unused) && (not-in-publish || npm test) && safe-publish-latest",
12 "pretest": "npm run --silent lint",
13 "test": "npm run --silent tests-only",
14 "link:eslint": "cd node_modules/eslint && npm link --production && cd -",
15 "pretravis": "npm run link:eslint && cd ../eslint-config-airbnb-base && npm link eslint && npm install && npm link && cd - && npm link --no-save eslint-config-airbnb-base",
16 "travis": "npm run --silent tests-only",
17 "posttravis": "npm unlink --no-save eslint-config-airbnb-base eslint >/dev/null &"
18 },
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/airbnb/javascript"
22 },
23 "keywords": [
24 "eslint",
25 "eslintconfig",
26 "config",
27 "airbnb",
28 "javascript",
29 "styleguide",
30 "es2015",
31 "es2016",
32 "es2017",
33 "es2018"
34 ],
35 "author": "Jake Teton-Landis (https://twitter.com/@jitl)",
36 "contributors": [
37 {
38 "name": "Jake Teton-Landis",
39 "url": "https://twitter.com/jitl"
40 },
41 {
42 "name": "Jordan Harband",
43 "email": "ljharb@gmail.com",
44 "url": "http://ljharb.codes"
45 },
46 {
47 "name": "Harrison Shoff",
48 "url": "https://twitter.com/hshoff"
49 }
50 ],
51 "license": "MIT",
52 "bugs": {
53 "url": "https://github.com/airbnb/javascript/issues"
54 },
55 "homepage": "https://github.com/airbnb/javascript",
56 "dependencies": {
57 "eslint-config-airbnb-base": "^14.1.0",
58 "object.assign": "^4.1.0",
59 "object.entries": "^1.1.1"
60 },
61 "devDependencies": {
62 "@babel/runtime": "^7.8.7",
63 "babel-preset-airbnb": "^4.4.0",
64 "babel-tape-runner": "^3.0.0",
65 "eclint": "^2.8.1",
66 "eslint": "^5.16.0 || ^6.8.0",
67 "eslint-find-rules": "^3.4.0",
68 "eslint-plugin-import": "^2.20.1",
69 "eslint-plugin-jsx-a11y": "^6.2.3",
70 "eslint-plugin-react": "^7.19.0",
71 "eslint-plugin-react-hooks": "^2.5.0 || ^1.7.0",
72 "in-publish": "^2.0.0",
73 "react": ">= 0.13.0",
74 "safe-publish-latest": "^1.1.4",
75 "tape": "^5.0.0-next.4"
76 },
77 "peerDependencies": {
78 "eslint": "^5.16.0 || ^6.8.0",
79 "eslint-plugin-import": "^2.20.1",
80 "eslint-plugin-jsx-a11y": "^6.2.3",
81 "eslint-plugin-react": "^7.19.0",
82 "eslint-plugin-react-hooks": "^2.5.0 || ^1.7.0"
83 },
84 "engines": {
85 "node": ">= 6"
86 }
87}