mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-09 01:38:03 -05:00
47 lines
1.6 KiB
JSON
47 lines
1.6 KiB
JSON
{
|
|
"name": "airbnb-style",
|
|
"version": "2.0.0",
|
|
"description": "A mostly reasonable approach to JavaScript.",
|
|
"scripts": {
|
|
"preinstall": "npm run install:config && npm run install:config:base",
|
|
"postinstall": "rm -rf node_modules/markdownlint-cli/node_modules/markdownlint",
|
|
"install:config": "cd packages/eslint-config-airbnb && npm prune && npm install",
|
|
"install:config:base": "cd packages/eslint-config-airbnb-base && npm prune && npm install",
|
|
"lint": "markdownlint --config linters/.markdownlint.json README.md */README.md",
|
|
"pretest": "npm run --silent lint",
|
|
"test": "npm run --silent test:config && npm run --silent test:config:base",
|
|
"test:config": "cd packages/eslint-config-airbnb; npm test",
|
|
"test:config:base": "cd packages/eslint-config-airbnb-base; npm test",
|
|
"pretravis": "npm run --silent lint",
|
|
"travis": "npm run --silent travis:config && npm run --silent travis:config:base",
|
|
"travis:config": "cd packages/eslint-config-airbnb; npm run travis",
|
|
"travis:config:base": "cd packages/eslint-config-airbnb-base; npm run travis"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/airbnb/javascript.git"
|
|
},
|
|
"keywords": [
|
|
"style guide",
|
|
"lint",
|
|
"airbnb",
|
|
"es6",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"es2018",
|
|
"react",
|
|
"jsx"
|
|
],
|
|
"author": "Harrison Shoff <hi@hshoff.com> (https://twitter.com/hshoff)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/airbnb/javascript/issues"
|
|
},
|
|
"homepage": "https://github.com/airbnb/javascript",
|
|
"devDependencies": {
|
|
"markdownlint": "^0.29.0",
|
|
"markdownlint-cli": "^0.35.0"
|
|
}
|
|
}
|