-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "code-katas",
"version": "1.0.0",
"description": "Collection of my solutions to Codewars Katas",
"main": "index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbchoa/code-katas.git"
},
"keywords": [],
"author": "mbchoa",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbchoa/code-katas/issues"
},
"homepage": "https://github.com/mbchoa/code-katas#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^7.0.4",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"day*/*.js": [
"eslint --fix",
"prettier --write"
]
}
}