-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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
45
46
47
48
49
50
51
52
{
"name": "bubblesort-implementations",
"version": "1.0.0",
"description": "Comprehensive bubble sort implementations with multiple design patterns",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/ --fix",
"prettier": "prettier --write .",
"benchmark": "node benchmarks/index.js",
"build": "webpack --mode production",
"docker:build": "docker build -t bubblesort-app .",
"docker:run": "docker run -p 3000:3000 bubblesort-app",
"release": "standard-version",
"semantic-release": "semantic-release"
},
"keywords": ["sorting", "algorithms", "bubble-sort", "design-patterns"],
"author": "WillKirkmanM",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.0",
"standard-version": "^9.0.0",
"semantic-release": "^19.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"winston": "^3.8.0",
"benchmark": "^2.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": ["eslint --fix", "prettier --write", "git add"],
"*.{json,md}": ["prettier --write", "git add"]
}
}