-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
43
{
"name": "leetcode",
"version": "1.0.0",
"description": "JavaScript solutions to the https://leetcode.com/problemset/all/ problems.",
"main": "index.js",
"devDependencies": {
"big-integer": "^1.6.44",
"decimal.js": "^10.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.8.0",
"performance-now": "^2.1.0",
"prettier": "^1.19.1"
},
"scripts": {
"test": "jest",
"test:python": "python -m unittest discover -p '*_test.py'",
"yapf": "yapf -ir --style=\"{indent_width: 2}\" files ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmaynard24/leetcode.git"
},
"keywords": [
"javascript",
"leetcode",
"algorithms",
"math",
"primes",
"prime",
"numbers"
],
"author": "Dave Maynard",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmaynard24/leetcode/issues"
},
"homepage": "https://github.com/dmaynard24/leetcode#readme"
}