UNPKG

3.46 kBJSONView Raw
1{
2 "name": "eslint",
3 "version": "4.10.0",
4 "author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
5 "description": "An AST-based pattern checker for JavaScript.",
6 "bin": {
7 "eslint": "./bin/eslint.js"
8 },
9 "main": "./lib/api.js",
10 "scripts": {
11 "test": "node Makefile.js test",
12 "lint": "node Makefile.js lint",
13 "fuzz": "node Makefile.js fuzz",
14 "release": "node Makefile.js release",
15 "ci-release": "node Makefile.js ciRelease",
16 "alpharelease": "node Makefile.js prerelease -- alpha",
17 "betarelease": "node Makefile.js prerelease -- beta",
18 "docs": "node Makefile.js docs",
19 "gensite": "node Makefile.js gensite",
20 "browserify": "node Makefile.js browserify",
21 "perf": "node Makefile.js perf",
22 "profile": "beefy tests/bench/bench.js --open -- -t brfs -t ./tests/bench/xform-rules.js -r espree",
23 "coveralls": "cat ./coverage/lcov.info | coveralls"
24 },
25 "files": [
26 "LICENSE",
27 "README.md",
28 "bin",
29 "conf",
30 "lib",
31 "messages"
32 ],
33 "repository": "eslint/eslint",
34 "homepage": "https://eslint.org",
35 "bugs": "https://github.com/eslint/eslint/issues/",
36 "dependencies": {
37 "ajv": "^5.2.0",
38 "babel-code-frame": "^6.22.0",
39 "chalk": "^2.1.0",
40 "concat-stream": "^1.6.0",
41 "cross-spawn": "^5.1.0",
42 "debug": "^3.0.1",
43 "doctrine": "^2.0.0",
44 "eslint-scope": "^3.7.1",
45 "espree": "^3.5.1",
46 "esquery": "^1.0.0",
47 "estraverse": "^4.2.0",
48 "esutils": "^2.0.2",
49 "file-entry-cache": "^2.0.0",
50 "functional-red-black-tree": "^1.0.1",
51 "glob": "^7.1.2",
52 "globals": "^9.17.0",
53 "ignore": "^3.3.3",
54 "imurmurhash": "^0.1.4",
55 "inquirer": "^3.0.6",
56 "is-resolvable": "^1.0.0",
57 "js-yaml": "^3.9.1",
58 "json-stable-stringify": "^1.0.1",
59 "levn": "^0.3.0",
60 "lodash": "^4.17.4",
61 "minimatch": "^3.0.2",
62 "mkdirp": "^0.5.1",
63 "natural-compare": "^1.4.0",
64 "optionator": "^0.8.2",
65 "path-is-inside": "^1.0.2",
66 "pluralize": "^7.0.0",
67 "progress": "^2.0.0",
68 "require-uncached": "^1.0.3",
69 "semver": "^5.3.0",
70 "strip-ansi": "^4.0.0",
71 "strip-json-comments": "~2.0.1",
72 "table": "^4.0.1",
73 "text-table": "~0.2.0"
74 },
75 "devDependencies": {
76 "babel-polyfill": "^6.23.0",
77 "babel-preset-es2015": "^6.24.1",
78 "babelify": "^7.3.0",
79 "beefy": "^2.1.8",
80 "brfs": "1.4.3",
81 "browserify": "^14.4.0",
82 "chai": "^4.0.1",
83 "cheerio": "^0.22.0",
84 "coveralls": "^2.13.1",
85 "dateformat": "^2.0.0",
86 "ejs": "^2.5.6",
87 "eslint-plugin-eslint-plugin": "^1.2.0",
88 "eslint-plugin-node": "^5.1.0",
89 "eslint-release": "^0.10.1",
90 "eslump": "1.6.0",
91 "esprima": "^4.0.0",
92 "esprima-fb": "^15001.1001.0-dev-harmony-fb",
93 "istanbul": "^0.4.5",
94 "jsdoc": "^3.4.3",
95 "karma": "^1.7.0",
96 "karma-babel-preprocessor": "^6.0.1",
97 "karma-mocha": "^1.3.0",
98 "karma-mocha-reporter": "^2.2.3",
99 "karma-phantomjs-launcher": "^1.0.4",
100 "leche": "^2.1.2",
101 "load-perf": "^0.2.0",
102 "markdownlint": "^0.6.1",
103 "mocha": "^3.4.2",
104 "mock-fs": "^4.3.0",
105 "npm-license": "^0.3.3",
106 "phantomjs-prebuilt": "^2.1.14",
107 "proxyquire": "^1.8.0",
108 "shelljs": "^0.7.7",
109 "shelljs-nodecli": "~0.1.1",
110 "sinon": "^3.2.1",
111 "temp": "^0.8.3",
112 "through": "^2.3.8"
113 },
114 "keywords": [
115 "ast",
116 "lint",
117 "javascript",
118 "ecmascript",
119 "espree"
120 ],
121 "license": "MIT",
122 "engines": {
123 "node": ">=4"
124 }
125}