forked from HackYourFutureBelgium/practice-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "practice-code-review",
"version": "1.0.0",
"jest": {
"verbose": true
},
"scripts": {
"format": "prettier --write ./",
"format:check": "prettier --check ./",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe",
"lint:ls": "ls-lint",
"lint:md": "markdownlint --ignore node_modules --ignore docs --config ./.markdownlint.jsonc --fix ./ ",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests --coverage ",
"spell-check": "cspell './**'"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hackyourfuturebelgium/practice-code-review.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackyourfuturebelgium/practice-code-review/issues"
},
"homepage": "https://github.com/hackyourfuturebelgium/practice-code-review",
"devDependencies": {
"@ls-lint/ls-lint": "^1.10.0",
"cspell": "^5.6.6",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.9.1",
"jest": "^26.6.3",
"markdownlint-cli": "^0.32.2",
"prettier": "^2.2.1"
}
}