-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.05 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.05 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "json-fixer",
"version": "1.6.15",
"description": "A JSON fixer",
"main": "index.js",
"repository": "https://github.com/Berkmann18/json-fixer.git",
"files": [
"src"
],
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/Berkmann18/json-fixer/issues"
},
"homepage": "https://github.com/Berkmann18/json-fixer#readme",
"author": {
"name": "Maximilian Berkmann",
"email": "maxieberkmann@gmail.com"
},
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint . && npm run lint:lockfile && npm run lint:md",
"lint:fix": "eslint . --fix",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm yarn",
"lint:md": "remark . .github",
"format": "prettier --write 'src/*.js' index.js",
"test": "jest",
"test:watch": "jest --watch",
"sec": "snyk test",
"commit": "git-cz",
"generate": "pegjs src/json.pegjs",
"prepare": "snyk protect",
"sr": "semantic-release",
"build": "echo 0",
"sandbox": "node test/sandbox"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-merge": "npm i",
"pre-push": "npm run lint && npm t"
}
},
"lint-staged": {
"*.js": [
"npm run format"
],
"*.md": [
"remark"
]
},
"keywords": [
"json",
"fix",
"lint",
"check"
],
"dependencies": {
"@babel/runtime": "^7.26.10",
"chalk": "^4.1.2",
"pegjs": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"codecov": "^3.7.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.2.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.8.0",
"git-cz": "^4.6.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"lockfile-lint": "^4.2.2",
"prettier": "^2.0.5",
"remark-cli": "^8.0.0",
"remark-preset-lint-consistent": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"semantic-release": "^17.0.8",
"snyk": "^1.336.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"notify": true,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 40,
"lines": 50,
"statements": 50
}
},
"testPathIgnorePatterns": [
"/__tests__/.*/__fixtures__/.*"
],
"collectCoverageFrom": [
"index.js",
"src/**/*.{js,ts}",
"!src/test.utils.js"
]
}
}