forked from rogeriopvl/gulp-jsonlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.22 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@prantlf/gulp-jsonlint",
"version": "2.4.0",
"description": "A jsonlint plugin for Gulp",
"author": "Ferdinand Prantl <[email protected]> (http://prantl.tk)",
"contributors": [
"Rogério Vicente (https://github.com/rogeriopvl)",
"mrflippy (https://github.com/misterflippy)"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/gulp-jsonlint/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/gulp-jsonlint",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/gulp-jsonlint.git"
},
"bugs": "https://github.com/prantlf/gulp-jsonlint/issues",
"main": "./index.js",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=14"
},
"scripts": {
"pretest": "npm run lint",
"test": "c8 mocha",
"posttest": "c8 --no-clean npm run examples || echo \"\"",
"lint": "eslint --fix **/*.js",
"lint:fix": "prettier --write index.js lib/**/*.js test/**/*.js",
"examples": "gulp valid && gulp one || gulp two || gulp three || gulp all"
},
"c8": {
"reporter": [
"lcov",
"text"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"dependencies": {
"@prantlf/jsonlint": "14.0.3",
"ansi-colors": "4.1.3",
"fancy-log": "2.0.0",
"map-stream": "0.0.7",
"plugin-error": "2.0.1",
"through2": "4.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "7.13.0",
"eslint": "8.39.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "4.1.0",
"gulp": "4.0.2",
"mocha": "10.2.0",
"prettier": "2.8.8",
"should": "13.2.3",
"vinyl": "3.0.0"
},
"keywords": [
"gulpplugin",
"jsonlint",
"json",
"lint"
]
}