-
Notifications
You must be signed in to change notification settings - Fork 614
/
package.json
49 lines (49 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
{
"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": ">=14"
},
"scripts": {
"test": "npx jest"
},
"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": {
"debug": "^4.3.5",
"lodash": "^4.17.21"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@jest/globals": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lint-staged": "^15.2.7",
"npm-check-updates": "^16.14.20",
"simple-git-hooks": "^2.11.1"
}
}