This repository was archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.36 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
81
82
{
"name": "gitexp",
"version": "0.5.0",
"description": "",
"main": "dist/gitexp.js",
"repository": {
"type": "git",
"url": "git+https://github.com/caian-org/gitexp.git"
},
"bugs": {
"url": "https://github.com/caian-org/gitexp/issues"
},
"homepage": "https://github.com/caian-org/gitexp#readme",
"scripts": {
"start": "node dist/gitexp.js",
"start:ts": "ts-node src/gitexp.ts",
"build": "tsc",
"build:clean": "rm -rf dist tsconfig.tsbuildinfo && npm run build",
"bump:all": "npm run bump:dev && npm run bump:prod",
"bump:dev": "ncu --upgrade --dep dev --target minor",
"bump:prod": "ncu --upgrade --dep prod --target minor",
"check:all": "npm run check:style && npm run check:types && npm run check:duplicated",
"check:duplicated": "jscpd",
"check:style": "ts-standard src",
"check:types": "tsc --noEmit",
"fix:style": "prettier --config .prettierrc.js '**/*.ts' --write && ts-standard --fix src",
"prepublish": "npm run build:clean",
"test": "jest"
},
"author": "Caian Ertl <hi@caian.org>",
"license": "CC0-1.0",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.ts": [
"npm run fix:style"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.4.4",
"@types/archiver": "^5.3.2",
"@types/clear": "^0.1.2",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.10",
"@types/pluralize": "0.0.29",
"@types/spinnies": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"commitizen": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jscpd": "^3.5.4",
"lint-staged": "^13.2.0",
"npm-check-updates": "^16.8.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@octokit/rest": "^19.0.7",
"archiver": "^5.3.1",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"cli-spinners": "^2.7.0",
"commander": "^10.0.0",
"date-fns": "^2.29.3",
"fast-folder-size": "^1.7.1",
"inquirer": "^9.1.5",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"simple-git": "^3.17.0",
"spinnies": "^0.5.1"
}
}