-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
29 lines (29 loc) · 853 Bytes
/
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
{
"name": "leetcode-with-javascript",
"version": "1.0.0",
"description": "Solutions collection of my LeetCode submissions in JavaScript (LeetCode 解题集之 JavaScript 版)",
"main": "index.js",
"scripts": {
"fix": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hijiangtao/LeetCode-with-JavaScript.git"
},
"keywords": [
"leetcode"
],
"author": "hijiangtao",
"license": "MIT",
"bugs": {
"url": "https://github.com/hijiangtao/LeetCode-with-JavaScript/issues"
},
"homepage": "https://github.com/hijiangtao/LeetCode-with-JavaScript#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}