-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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": "@retiman/leetcode",
"version": "1.0.0",
"license": "MIT",
"author": "Min Huang",
"email": "min.huang@alumni.usc.edu",
"description": "Leetcode problems with solutions",
"homepage": "https://github.com/retiman/leetcode#README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/retiman/leetcode.git"
},
"scripts": {
"build": "tsc",
"clean": "node script/clean.mjs",
"fix": "npm run lint:fix && npm run format:fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"snapshot:update": "npm run test -- -u",
"test": "jest --config test/jest.config.mjs",
"all": "npm run clean && npm run fix && npm run build && npm run test"
},
"main": "dist/index.js",
"directories": {
"src": "src",
"test": "test"
},
"dependencies": {
"@datastructures-js/priority-queue": "5.4.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/recommended": "^1.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"editorconfig": "^2.0.0",
"eslint": "^9.17.0",
"eslint-plugin-unused-imports": "^4.1.4",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}