-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "ejs-lint",
"version": "2.0.1",
"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"
},
"type": "module",
"files": [],
"scripts": {
"format": "eslint . --fix && npm run prettier -- --write",
"lint": "npm run prettier -- --list-different && eslint .",
"prettier": "prettier **/*.{js,md}",
"test": "npm run unit && npm run lint",
"try": "./cli.js try.ejs",
"unit": "nyc --check-coverage mocha --ui tdd --check-leaks"
},
"dependencies": {
"chalk": "^5.0.0",
"ejs": "3.1.10",
"ejs-include-regex": "^1.0.0",
"globby": "^13.0.0",
"read-input": "^0.3.1",
"slash": "^5.0.0",
"syntax-error": "^1.1.6",
"yargs": "^17.0.0"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-problems": "^7.0.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"prettier": "^3.0.0"
},
"prettier": {
"singleQuote": true
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":label(deps)"
]
}
}