forked from RyanZim/EJS-Lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 958 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 958 Bytes
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
{
"name": "ejs-lint",
"version": "0.3.0",
"description": "Linter/Syntax Checker for EJS Templates",
"author": "Ryan Zimmerman <[email protected]> (http://ryanzim.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ryanzim/ejs-lint.git"
},
"homepage": "https://github.com/RyanZim/EJS-Lint",
"bugs": "https://github.com/RyanZim/EJS-Lint/issues",
"main": "index.js",
"bin": {
"ejslint": "./cli.js"
},
"scripts": {
"test": "mocha && eslint .",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"try": "./cli.js try.ejs"
},
"dependencies": {
"ejs": "2.5.9",
"ejs-include-regex": "^1.0.0",
"globby": "^6.1.0",
"read-input": "^0.3.1",
"rewire": "^3.0.1",
"syntax-error": "^1.1.6",
"yargs": "^11.0.0"
},
"devDependencies": {
"eslint": "^4.1.0",
"eslint-config-ryanzim": "0.0.2",
"istanbul": "^0.4.3",
"mocha": "^5.0.0"
}
}