forked from eslint/eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3 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
{
"name": "eslint",
"version": "2.0.0-beta.2",
"author": "Nicholas C. Zakas <[email protected]>",
"description": "An AST-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",
"docs": "node Makefile.js docs",
"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 -r espree",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"check-commit": "node Makefile.js checkGitCommit"
},
"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": {
"chalk": "^1.0.0",
"concat-stream": "^1.4.6",
"debug": "^2.1.1",
"doctrine": "^1.1.0",
"es6-map": "^0.1.3",
"escape-string-regexp": "^1.0.2",
"escope": "^3.3.0",
"espree": "^3.0.0",
"estraverse": "^4.1.1",
"estraverse-fb": "^1.3.1",
"esutils": "^2.0.2",
"file-entry-cache": "^1.1.1",
"glob": "^6.0.4",
"globals": "^8.18.0",
"handlebars": "^4.0.5",
"ignore": "^2.2.19",
"inquirer": "^0.11.0",
"is-my-json-valid": "^2.10.0",
"is-resolvable": "^1.0.0",
"js-yaml": "^3.5.1",
"json-stable-stringify": "^1.0.0",
"lodash.clonedeep": "^3.0.1",
"lodash.merge": "^3.3.2",
"lodash.omit": "^3.1.0",
"mkdirp": "^0.5.0",
"object-assign": "^4.0.1",
"optionator": "^0.8.1",
"path-is-absolute": "^1.0.0",
"path-is-inside": "^1.0.1",
"shelljs": "^0.5.3",
"strip-json-comments": "~1.0.1",
"text-table": "~0.2.0",
"user-home": "^2.0.0",
"xml-escape": "~1.0.0"
},
"devDependencies": {
"beefy": "^2.0.0",
"brfs": "0.0.9",
"browserify": "^12.0.1",
"chai": "^3.4.0",
"cheerio": "^0.19.0",
"coveralls": "2.11.4",
"dateformat": "^1.0.8",
"ejs": "^2.3.3",
"esprima": "^2.4.1",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"gh-got": "^2.2.0",
"istanbul": "^0.4.0",
"jsdoc": "^3.3.0-beta1",
"jsonlint": "^1.6.2",
"leche": "^2.1.1",
"linefix": "^0.1.1",
"load-perf": "^0.2.0",
"markdownlint": "^0.1.0",
"mocha": "^2.1.0",
"mocha-phantomjs": "4.0.1",
"npm-license": "^0.3.1",
"phantomjs": "1.9.18",
"phantomjs-polyfill": "0.0.1",
"proxyquire": "^1.0.0",
"semver": "^5.0.3",
"shelljs-nodecli": "~0.1.0",
"sinon": "^1.17.2",
"through": "^2.3.6",
"tmp": "0.0.28"
},
"keywords": [
"ast",
"lint",
"javascript",
"ecmascript",
"espree"
],
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}