-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "leetcode",
"version": "1.0.0",
"description": "My leetcode solution repository",
"type": "module",
"scripts": {
"jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "./bin/test.sh",
"lint": "eslint src tests",
"format": "prettier . --write",
"count": "ls ./src -1 | wc -l",
"ctci": "node ./bin/ctci.js",
"today": "ls ./src -lt --time=birth --time-style='+%b %-d' | grep \"$(date '+%b %-d')\" | wc -l",
"touch": "node ./bin/touch.js",
"uglify": "./bin/uglify.sh",
"info": "node ./bin/info.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beakerandjake/leetcode.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/beakerandjake/leetcode/issues"
},
"homepage": "https://github.com/beakerandjake/leetcode#readme",
"devDependencies": {
"@datastructures-js/priority-queue": "^5.4.0",
"@datastructures-js/queue": "^4.2.3",
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"html-to-text": "^9.0.5",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"leetcode-query": "^1.2.3",
"prettier": "3.2.5",
"uglify-js": "^3.17.4"
}
}