-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 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
45
46
47
48
49
{
"name": "data-structures-and-algorithms",
"version": "1.0.0",
"description": "Studing data structures and algorithms",
"main": "index.js",
"type": "module",
"engines": {
"npm": ">=8.5.0",
"node": ">=16.14.2"
},
"scripts": {
"start": "node index.js",
"lint": "npx eslint src index.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src index.js --check",
"prettier:fix": "npm run prettier -- --write",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daosgava/data-structures-and-algorithms.git"
},
"keywords": [
"data",
"structures",
"algorithms"
],
"author": "Daniel Garcia",
"license": "ISC",
"bugs": {
"url": "https://github.com/daosgava/data-structures-and-algorithms/issues"
},
"homepage": "https://github.com/daosgava/data-structures-and-algorithms#readme",
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": ["npm run lint", "npm run prettier:fix"]
}
}