-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "leetcode",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/hamanovich/leetcode.git"
},
"author": "Siarhei Hamanovich <hamanovich@gmail.com>",
"license": "MIT",
"type": "module",
"keywords": [
"computer-science",
"cs",
"algorithms",
"data-structures",
"javascript",
"algorithm",
"javascript-algorithms",
"sorting-algorithms",
"graph",
"tree"
],
"bugs": {
"url": "https://github.com/hamanovich/leetcode/issues"
},
"homepage": "https://github.com/hamanovich/leetcode#readme",
"scripts": {
"build": "tsc",
"prettier": "prettier --write ./src",
"coverage": "jest --coverage",
"coverage:single": "jest --coverage --collectCoverageFrom=src/common/tree/binary-tree-node.ts",
"test": "jest -o --passWithNoTests",
"test:all": "jest --all --passWithNoTests",
"test:watch": "jest --watchAll",
"lint": "eslint --cache --cache-location=.cache/eslint",
"lint:nocache": "eslint .",
"ts": "ts-node"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^28.1.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-jest": "^28.1.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"husky": ">=6",
"jest": "^28.1.1",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.ts": [
"yarn test:all",
"yarn prettier",
"yarn lint"
]
},
"engines": {
"node": ">=16.10.0",
"npm": ">=8.0.0"
}
}