forked from eslint/eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
{
"name": "eslint",
"version": "0.3.0",
"author": "Nicholas C. Zakas <[email protected]>",
"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"
},
"files": [
"LICENSE",
"README.md",
"bin",
"conf",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/eslint/eslint"
},
"dependencies": {
"optimist": "*",
"estraverse": "~1.3.0",
"esprima": "*",
"escope": "1.0.0",
"glob": "~3.2.7",
"text-table": "~0.2.0",
"chalk": "~0.4.0",
"strip-json-comments": "~0.1.1",
"js-yaml": "~3.0.1"
},
"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"
},
"keywords": [
"ast",
"lint",
"javascript",
"ecmascript"
],
"preferGlobal": true,
"license": {
"type": "MIT",
"url": "https://github.com/eslint/eslint/blob/master/LICENSE"
}
}