addons-linter/package.json

125 строки
4.2 KiB
JSON

{
"name": "addons-linter",
"version": "3.7.0",
"description": "Mozilla Add-ons Linter",
"main": "dist/addons-linter.js",
"bin": {
"addons-linter": "bin/addons-linter"
},
"engines": {
"node": ">=12.21.0"
},
"browserslist": [
"node >=12.21.0"
],
"scripts": {
"build": "webpack --bail --stats-error-details true --color --config webpack.config.js",
"eslint": "eslint bin/* scripts/* .",
"extract-locales": "webpack --bail --stats-error-details true --color --config webpack.l10n.config.babel.js",
"test": "jest --runInBand --watch 'tests/.*'",
"test-coverage": "jest --runInBand --coverage --watch 'tests/.*'",
"test-once": "jest --runInBand",
"test-coverage-once": "jest --runInBand --coverage",
"test-ci": "npm run test-coverage-once && codecov",
"test-integration": "jest --runInBand --config=jest.integration.config.js",
"test-integration-linter": "npm run test-integration -- tests/integration/addons-linter",
"test-integration:production": "node tests/integration/run-as-production-env.js test-integration tests/integration/addons-linter",
"lint": "npm run eslint",
"prettier": "prettier --write '**'",
"prettier-ci": "prettier --list-different '**' || (echo '\n\nThis failure means you did not run `npm run prettier-dev` before committing\n\n' && exit 1)",
"prettier-dev": "pretty-quick --branch master",
"publish-rules": "scripts/build-rules && cp node_modules/gfm.css/gfm.css docs/html/gfm.css && scripts/publish-rules",
"gen-contributing-toc": "doctoc CONTRIBUTING.md",
"webext-test-functional": "scripts/webext-test-functional"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/addons-linter.git"
},
"author": "Mozilla Add-ons Team",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/addons-linter/issues"
},
"homepage": "https://github.com/mozilla/addons-linter#readme",
"dependencies": {
"@mdn/browser-compat-data": "3.3.6",
"addons-scanner-utils": "4.8.0",
"ajv": "6.12.6",
"ajv-merge-patch": "4.1.0",
"chalk": "4.1.1",
"cheerio": "1.0.0-rc.9",
"columnify": "1.5.4",
"common-tags": "1.8.0",
"deepmerge": "4.2.2",
"dispensary": "0.62.0",
"eslint": "7.28.0",
"eslint-plugin-no-unsanitized": "3.1.5",
"eslint-visitor-keys": "2.1.0",
"espree": "7.3.1",
"esprima": "4.0.1",
"fluent-syntax": "0.13.0",
"glob": "7.1.7",
"image-size": "1.0.0",
"is-mergeable-object": "1.1.1",
"jed": "1.1.1",
"os-locale": "5.0.0",
"pino": "6.11.3",
"postcss": "8.3.0",
"relaxed-json": "1.0.3",
"semver": "7.3.5",
"source-map-support": "0.5.19",
"tosource": "1.0.0",
"upath": "2.0.1",
"yargs": "17.0.1",
"yauzl": "2.10.0"
},
"devDependencies": {
"@babel/cli": "7.14.3",
"@babel/core": "7.14.3",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-decorators": "7.14.2",
"@babel/plugin-proposal-export-namespace-from": "7.14.2",
"@babel/plugin-proposal-function-sent": "7.12.13",
"@babel/plugin-proposal-numeric-separator": "7.14.2",
"@babel/plugin-proposal-throw-expressions": "7.12.13",
"@babel/preset-env": "7.14.4",
"@babel/register": "7.13.16",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-gettext-extractor": "4.1.3",
"babel-jest": "27.0.2",
"babel-loader": "8.2.2",
"codecov": "3.8.2",
"comment-json": "4.1.0",
"doctoc": "2.0.1",
"eslint-config-amo": "4.7.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-promise": "5.1.0",
"gfm.css": "1.1.2",
"gh-pages": "3.2.0",
"gunzip-maybe": "1.4.2",
"hashish": "0.0.4",
"jest": "27.0.4",
"jest-raw-loader": "1.0.1",
"lodash.clonedeep": "4.5.0",
"lodash.ismatchwith": "4.4.0",
"markdown-it": "12.0.6",
"markdown-it-anchor": "7.1.0",
"markdown-it-emoji": "2.0.0",
"po2json": "0.4.5",
"prettier": "2.3.1",
"pretty-quick": "3.1.0",
"raw-loader": "4.0.2",
"shelljs": "0.8.4",
"sinon": "11.1.1",
"tar": "6.1.0",
"tar-fs": "2.1.1",
"tmp-promise": "3.0.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.2",
"webpack-node-externals": "3.0.0",
"yazl": "2.5.1"
}
}