-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dirkit",
"version": "0.1.1",
"description": "Directory management and visualization toolkit",
"main": "dist/index.js",
"bin": {
"dirkit": "./bin/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p ./config/tsconfig.json",
"build:prepare": "node scripts/build.js",
"release": "node scripts/release.js",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"release:prepatch": "node scripts/release.js prepatch",
"release:preminor": "node scripts/release.js preminor",
"release:premajor": "node scripts/release.js premajor",
"release:prerelease": "node scripts/release.js prerelease",
"start": "node dist/cli/commands.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --config ./config/prettierrc.json --write .",
"prepare": "husky install",
"commit": "cz"
},
"keywords": [
"directory",
"file-system",
"cli",
"tool"
],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/PerHac13/dirkit"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^11.1.0"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --config config/prettierrc.json --write",
"eslint --config config/eslintrc.js --fix"
]
},
"commitlint": {
"config": "./config/commitlint.config.js"
},
"prettier": {
"prettier": "./config/prettierrc.json"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}