-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1005 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "my-leetcodes",
"version": "1.0.0",
"description": "A collection of my LeetCode solutions.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:staged": "lint-staged",
"lint": "eslint",
"commit": "gitmoji -c",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/momocow/my-leetcodes.git"
},
"keywords": [
"leetcode",
"solution"
],
"author": "MomoCow",
"license": "MIT",
"bugs": {
"url": "https://github.com/momocow/my-leetcodes/issues"
},
"homepage": "https://github.com/momocow/my-leetcodes#readme",
"devDependencies": {
"escape-string-regexp": "^2.0.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"gitmoji-cli": "^4.1.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"shell-quote": "^1.7.2"
}
}