-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 812 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 812 Bytes
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
{
"name": "Leetcode",
"version": "1",
"description": "Algorithms and data-structures implemented on JavaScript",
"repository": {
"type": "git",
"url": ""
},
"author": "Rom Fatal",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**",
"test": "jest",
"coverage": "npm run test -- --coverage",
"ci": "npm run lint && npm run coverage"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/preset-env": "7.20.2",
"@types/jest": "29.4.0",
"canvas": "2.11.0",
"eslint": "8.33.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"jest": "29.4.1"
},
"engines": {
"node": ">=16.15.0",
"npm": ">=8.5.5"
}
}