-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "@hexlet/code",
"version": "0.0.3",
"description": "Node.js boilerplate package",
"bin": {
"hexlet": "bin/nodejs-package.js"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "npx jest --bail"
},
"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",
"jest": {
"testEnvironment": "node",
"transform": {},
"testRunner": "jest-circus/runner"
},
"homepage": "https://github.com/hexlet-boilerplates/nodejs-package#readme",
"dependencies": {
"debug": "^4.3.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-cli": "^26.6.3"
}
}