-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 731 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 731 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
{
"name": "javascript-algorithms",
"version": "0.0.1",
"description": "Javascript Algorithms and Datastructures",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js"
},
"pre-commit": [
"lint",
"test"
],
"author": "Lennon Chimbumu",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@types/jest": "^26.0.4",
"@babel/cli": "^7.10.4",
"babel-preset-env": "^1.7.0",
"eslint": "7.4.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.18.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"jest": "26.1.0",
"pre-commit": "^1.2.2"
}
}