forked from eslint/eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "eslint",
"version": "0.1.0-dev",
"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": {
"changelog": "bash scripts/changelog-update.sh",
"test": "bash scripts/test.sh",
"lint": "node node_modules/jshint/bin/jshint ./conf/eslint.json ./lib",
"bundle": "bash scripts/bundle.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/nzakas/eslint"
},
"dependencies": {
"optimist": "*",
"estraverse": "~1.3.0",
"esprima": "*",
"jshint": "*",
"escope": "1.0.0"
},
"devDependencies": {
"vows": "~0.7.0",
"istanbul": "~0.1.10",
"sinon": "*",
"jshint": "~2.1.4",
"commonjs-everywhere": "~0.9.0"
},
"keywords": [
"ast",
"lint",
"javascript",
"ecmascript"
],
"preferGlobal": true,
"license": {
"type": "MIT",
"url": "https://github.com/nzakas/eslint/blob/master/LICENSE"
}
}