-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.1 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/ts-package",
"version": "1.0.0",
"description": "Typescript boilerplate package",
"main": "index.js",
"scripts": {
"test": "jest --colors",
"build": "tsc"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/ts-package.git"
},
"keywords": [],
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/ts-package/issues"
},
"homepage": "https://github.com/hexlet-boilerplates/ts-package#readme",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}