-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.88 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
{
"name": "esvalidate",
"version": "0.1.3",
"description": "A CLI for JavaScript validation",
"keywords": [
"CLI",
"Validation",
"Esprima",
"esvalidate",
"parse",
"parsing"
],
"homepage": "https://github.com/duereg/esvalidate",
"bugs": "https://github.com/duereg/esvalidate/issues",
"author": {
"name": "Matt Blair",
"email": "[email protected]",
"url": "http://duereg.github.io"
},
"engines": {
"node": ">=0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/duereg/esvalidate.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bin": {
"esvalidate": "./bin/esvalidate"
},
"scripts": {
"lint": "node ./make.js lint",
"build": "node ./make.js"
},
"main": "esvalidate.js",
"dependencies": {
"esprima": "1.2.1"
},
"devDependencies": {
"browserify": "1.16.1",
"shelljs": "0.2.6",
"jshint": "2.5.0"
},
"readme": "# esvalidate\n\nA command line interface and npm package for ESValidate - a JavaScript validator using Esprima.\n\n## Install\n\nTo use esvalidate from any location (for npm v1.x) you need to install using the global (-g) flag.\n\n npm install -g esvalidate\n\n## Usage\n\n esvalidate -h\n\nYou can also require ESValidate itself as a module.\n\n var esvalidate = require('esvalidate');\n\nNote: If you are using npm v1.x be sure to install esvalidate locally (without the -g flag) or link it globally.\n\n## Text Editor Plugins\n\n* [sublime-esvalidate](https://github.com/duereg/sublime-jsvalidate) - `CTRL-SHIFT-V` on any .js file.\n\n## Custom Reporters\n\nSpecify a custom reporter module (see example/reporter.js).\n\n --reporter path/to/reporter.js\n",
"_id": "[email protected]",
"dist": {
"shasum": "1e0bcf817550f9e2b70cf8d8d28d6ed90ade4ef2"
},
"_from": "esvalidate"
}