-
Notifications
You must be signed in to change notification settings - Fork 617
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "@hexlet/nodejs-package",
"version": "0.0.3",
"description": "Node.js boilerplate package",
"bin": {
"nodejs-package": "bin/nodejs-package.js"
},
"simple-git-hooks": {
"pre-push": "npx lint-staged"
},
"engines": {
"node": ">=22"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/nodejs-package.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/nodejs-package/issues"
},
"type": "module",
"homepage": "https://github.com/hexlet-boilerplates/nodejs-package#readme",
"dependencies": {
"es-toolkit": "^1.45.1"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.1",
"@jest/globals": "^30.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"lint-staged": "^16.3.3",
"npm-check-updates": "^19.6.3",
"release-it": "^19.2.4",
"simple-git-hooks": "^2.13.1"
}
}