-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
44
{
"name": "data-structures",
"version": "1.0.0",
"description": "JavaScript and Python implementations of common data structures.",
"main": "index.js",
"devDependencies": {
"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",
"husky": "^7.0.4",
"jest": "^24.8.0",
"prettier": "^1.19.1"
},
"scripts": {
"test": "jest",
"yapf": "yapf -ir --style=\"{indent_width: 2}\" files .",
"lint": "eslint javascript/ --fix",
"format": "prettier javascript/**/*.js --write",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmaynard24/data-structures.git"
},
"keywords": [
"javascript",
"python",
"data",
"structures",
"algorithms",
"primes",
"prime",
"numbers"
],
"author": "Dave Maynard",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmaynard24/data-structures/issues"
},
"homepage": "https://github.com/dmaynard24/data-structures#readme"
}