-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "javascript-algorithm",
"version": "1.0.11",
"description": "implement algorithm practice",
"main": "index.js",
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
},
"scripts": {
"build": "tsc",
"lint": "tslint --fix -c tslint.json 'src/**/*{.ts}'",
"pretty": "prettier --write \"./**/*.{ts,json}\"",
"check-pretty": "prettier --check \"./**/*.{js,ts,json}\""
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run pretty",
"npm run lint",
"git add -A ."
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkaushikl/algorithm-practice.git"
},
"keywords": [
"javacript",
"algorithm"
],
"author": "Kaushik Dhameliya <dhameliyakaushik13@gmail.com> (https://dkaushikl.github.io)",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/dkaushikl/algorithm-practice/issues",
"email": "dhameliyakaushik13@gmail.com"
},
"homepage": "https://github.com/dkaushikl/algorithm-practice#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitlint": "^8.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"typescript": "^4.2.4"
},
"dependencies": {
"tslint-plugin-prettier": "^2.3.0"
}
}