forked from kpetrynka/Review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 851 Bytes
/
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
{
"name": "tasks-for-code-review",
"version": "1.0.0",
"author": "Timur Shemsedinov <[email protected]>",
"description": "KSE Introduction to IT",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kse-ua/introduction-to-it"
},
"bugs": {
"url": "https://github.com/kse-ua/introduction-to-it/issues",
"email": "[email protected]"
},
"homepage": "https://kse.ua/",
"scripts": {
"test": "eslint . && prettier -c \"**/*.js\"",
"fmt": "prettier --write \"**/*.js\""
},
"engines": {
"node": "16"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-metarhia": "^7.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.0"
}
}