forked from eslint/eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.94 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
{
"name": "eslint",
"version": "0.7.4",
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
"description": "An Esprima-based pattern checker for JavaScript.",
"bin": {
"eslint": "./bin/eslint.js"
},
"main": "./lib/api.js",
"scripts": {
"test": "node Makefile.js test",
"lint": "node Makefile.js lint",
"patch": "node Makefile.js patch",
"minor": "node Makefile.js minor",
"major": "node Makefile.js major",
"gensite": "node Makefile.js gensite",
"browserify": "node Makefile.js browserify",
"perf": "node Makefile.js perf",
"profile": "beefy tests/bench/bench.js --open -- -t brfs -t ./tests/bench/xform-rules.js"
},
"files": [
"LICENSE",
"README.md",
"bin",
"conf",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/eslint/eslint"
},
"homepage": "http://eslint.org",
"bugs": "https://github.com/eslint/eslint/issues/",
"dependencies": {
"optionator": "^0.4.0",
"estraverse": "~1.3.0",
"esprima": "^1.2.0",
"escope": "~1.0.0",
"text-table": "~0.2.0",
"chalk": "~0.4.0",
"strip-json-comments": "~0.1.1",
"js-yaml": "~3.0.1",
"doctrine": "~0.5.0",
"minimatch": "^0.3.0",
"debug": "^0.8.1",
"object-assign": "^0.3.1",
"mkdirp": "^0.5.0",
"xml-escape": "~1.0.0"
},
"devDependencies": {
"sinon": "1.7.3",
"mocha": "~1.13.0",
"chai": "~1.8.1",
"shelljs": "~0.2",
"jsonlint": "~1.6.0",
"istanbul": "~0.2.3",
"dateformat": "~1.0.7-1.2.3",
"browserify": "~3.20.0",
"mocha-phantomjs": "~3.3.1",
"phantomjs": "~1.9.2-6",
"eslint-tester": "^0.1.0",
"brfs": "0.0.9",
"through": "~2.3.4",
"beefy": "~1.0.0",
"shelljs-nodecli": "~0.1.0",
"glob": "^4.0.0",
"proxyquire": "^1.0.0"
},
"keywords": [
"ast",
"lint",
"javascript",
"ecmascript"
],
"preferGlobal": true,
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}