forked from LeetCode-in-TypeScript/LeetCode-in-TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@javadev/leetcode-in-typescript",
"version": "1.4.0",
"description": "TypeScript-based LeetCode algorithm problem solutions, regularly updated",
"keywords": [
"algorithm",
"typescript",
"math",
"leetcode",
"algorithm-competitions",
"leetcode-solutions",
"interview-questions",
"dynamic-programming",
"algorithms-and-data-structures",
"leetcode-typescript"
],
"homepage": "https://github.com/LeetCode-in-TypeScript",
"author": "Valentyn Kolesnikov",
"contributors": [
"Valentyn Kolesnikov"
],
"scripts": {
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fixts": "tslint -c tslint.json 'src/**/*.ts' --fix",
"prettier": "prettier -c --write ./src/**/*.ts",
"build": "rm -rf ./dist && tsc",
"precommit": "lint-staged",
"prepare": "husky install",
"execute": "ts-node",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeetCode-in-TypeScript/LeetCode-in-TypeScript.git"
},
"bugs:": "https://github.com/LeetCode-in-TypeScript/LeetCode-in-TypeScript/issues",
"main": "./src/main/ts/g0001_0100/s0001_two_sum/solution.ts",
"license": "MIT",
"lint-staged": {
"*.{ts,json,md}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"typescript": "^5.1.6"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^0.34.5",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"ts-lint": "^4.5.1",
"ts-node": "^10.9.1",
"vitest": "^0.34.5"
}
}