UNPKG

1.71 kBJSONView Raw
1{
2 "name": "eslint",
3 "version": "0.4.1",
4 "author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
5 "description": "An Esprima-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 "patch": "node Makefile.js patch",
14 "minor": "node Makefile.js minor",
15 "major": "node Makefile.js major",
16 "gensite": "node Makefile.js gensite",
17 "browserify": "node Makefile.js browserify",
18 "profile": "beefy tests/bench/bench.js --open -- -t brfs -t ./tests/bench/xform-rules.js"
19 },
20 "files": [
21 "LICENSE",
22 "README.md",
23 "bin",
24 "conf",
25 "lib"
26 ],
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/eslint/eslint"
30 },
31 "dependencies": {
32 "optionator": "~0.1.1",
33 "estraverse": "~1.3.0",
34 "esprima": "*",
35 "escope": "1.0.0",
36 "glob": "~3.2.7",
37 "text-table": "~0.2.0",
38 "chalk": "~0.4.0",
39 "strip-json-comments": "~0.1.1",
40 "js-yaml": "~3.0.1",
41 "doctrine": "~0.3.0"
42 },
43 "devDependencies": {
44 "sinon": "1.7.3",
45 "mocha": "~1.13.0",
46 "chai": "~1.8.1",
47 "shelljs": "~0.2",
48 "jsonlint": "~1.6.0",
49 "istanbul": "~0.2.3",
50 "dateformat": "~1.0.7-1.2.3",
51 "browserify": "~3.20.0",
52 "mocha-phantomjs": "~3.3.1",
53 "phantomjs": "~1.9.2-6",
54 "eslint-tester": "latest",
55 "brfs": "0.0.9",
56 "through": "~2.3.4",
57 "beefy": "~1.0.0"
58 },
59 "keywords": [
60 "ast",
61 "lint",
62 "javascript",
63 "ecmascript"
64 ],
65 "preferGlobal": true,
66 "license": {
67 "type": "MIT",
68 "url": "https://github.com/eslint/eslint/blob/master/LICENSE"
69 }
70}