-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"author": "Ilya Kaminsky <[email protected]> (http://ilyakam.com)",
"bugs": {
"url": "https://github.com/ilyakam/gulp-pug-linter/issues"
},
"description": "Gulp plugin to lint Pug (nee Jade) files",
"dependencies": {
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"pug-lint": "^2.6.0",
"through2": "^4.0.2"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"gulp": "^4.0.2",
"jest": "^26.6.3",
"vinyl": "^2.2.1"
},
"engines": {
"node": ">=10.x"
},
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "chore(package): update ${dependency} to version ${version}\r\n\r\nAutomatically update dependencies with Greenkeeper",
"devDependencyUpdate": "chore(package): update ${dependency} to version ${version}\r\n\r\nAutomatically update dev dependencies with Greenkeeper",
"lockfileUpdate": "chore(package): update lockfile ${lockfilePath}\r\n\r\nAutomatically update lockfile with Greenkeeper"
}
},
"homepage": "https://github.com/ilyakam/gulp-pug-linter#readme",
"keywords": [
"gulp",
"lint",
"pug",
"plugin",
"jade"
],
"license": "MIT",
"main": "index.js",
"name": "gulp-pug-linter",
"repository": {
"type": "git",
"url": "git+https://github.com/ilyakam/gulp-pug-linter.git"
},
"scripts": {
"coveralls": "npm run test && coveralls < coverage/lcov.info",
"dev": "gulp",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest"
},
"version": "1.5.0"
}