-
-
Notifications
You must be signed in to change notification settings - Fork 598
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 724 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 724 Bytes
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
{
"name": "self-assessment",
"version": "1.0.0",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"license": "MIT",
"description": "Software engineering self assessment",
"readmeFilename": "README.md",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\""
},
"dependencies": {
"concolor": "^1.1.0",
"metautil": "^5.2.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-metarhia": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.1.1"
}
}