mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8520ac9ff7
We're attemping to find globals in JS from many places, this attempts to make them all use the same methods. Since in some cases we're parsing new files we can't use the eslint methods for getting the source so I've added a simple way to convert from AST to a JS string.
29 lines
707 B
JSON
29 lines
707 B
JSON
{
|
|
"name": "eslint-plugin-mozilla",
|
|
"version": "0.0.3",
|
|
"description": "A collection of rules that help enforce JavaScript coding standard in the Mozilla project.",
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin",
|
|
"mozilla",
|
|
"firefox"
|
|
],
|
|
"bugs": {
|
|
"url": "https://bugzilla.mozilla.org/enter_bug.cgi?product=Firefox&component=Developer%20Tools"
|
|
},
|
|
"homepage": "https://bugzilla.mozilla.org/show_bug.cgi?id=1203520",
|
|
"author": "Mike Ratcliffe",
|
|
"main": "lib/index.js",
|
|
"dependencies": {
|
|
"escope": "^3.2.0",
|
|
"espree": "^2.2.4",
|
|
"estraverse": "^4.1.1",
|
|
"sax": "^1.1.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"license": "MPL-2.0"
|
|
}
|