forked from mozilla/addons-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "addons-linter",
"version": "5.0.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",
"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",
"build-rules": "scripts/build-rules && cp node_modules/github-markdown-css/github-markdown.css docs/github-markdown.css",
"webext-test-functional": "scripts/webext-test-functional",
"smoke-test-eslint-version-conflicts": "scripts/smoke-test-eslint-version-conflicts",
"update-hashes": "scripts/dispensary > src/dispensary/hashes.txt"
},
"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": "4.1.16",
"addons-moz-compare": "1.2.0",
"addons-scanner-utils": "7.0.0",
"ajv": "6.12.6",
"ajv-merge-patch": "4.1.0",
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.10",
"columnify": "1.6.0",
"common-tags": "1.8.2",
"deepmerge": "4.2.2",
"eslint": "8.13.0",
"eslint-plugin-no-unsanitized": "4.0.1",
"eslint-visitor-keys": "3.3.0",
"espree": "9.3.1",
"esprima": "4.0.1",
"fluent-syntax": "0.13.0",
"glob": "7.2.0",
"image-size": "1.0.1",
"is-mergeable-object": "1.1.1",
"jed": "1.1.1",
"os-locale": "5.0.0",
"pino": "7.10.0",
"postcss": "8.4.12",
"relaxed-json": "1.0.3",
"semver": "7.3.7",
"sha.js": "2.4.11",
"source-map-support": "0.5.21",
"tosource": "1.0.0",
"upath": "2.0.1",
"yargs": "17.4.1",
"yauzl": "2.10.0"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.9",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-proposal-function-sent": "7.16.7",
"@babel/plugin-proposal-numeric-separator": "7.16.7",
"@babel/plugin-proposal-throw-expressions": "7.16.7",
"@babel/preset-env": "7.16.11",
"@babel/register": "7.17.7",
"async": "3.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-gettext-extractor": "4.1.3",
"babel-jest": "27.5.1",
"babel-loader": "8.2.4",
"comment-json": "4.2.2",
"eslint-config-amo": "5.4.0",
"github-markdown-css": "5.1.0",
"gunzip-maybe": "1.4.2",
"hashish": "0.0.4",
"jest": "27.5.1",
"jest-raw-loader": "1.0.1",
"lodash.clonedeep": "4.5.0",
"lodash.ismatchwith": "4.4.0",
"markdown-it": "12.3.2",
"markdown-it-anchor": "8.6.2",
"markdown-it-emoji": "2.0.0",
"natural-compare-lite": "1.4.0",
"node-fetch": "2.6.7",
"po2json": "1.0.0-beta-3",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"raw-loader": "4.0.2",
"shelljs": "0.8.5",
"sinon": "13.0.2",
"tar": "6.1.11",
"tar-fs": "2.1.1",
"tmp-promise": "3.0.3",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-node-externals": "3.0.0",
"yazl": "2.5.1"
}
}