This repository was archived by the owner on Aug 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.05 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
{
"name": "tanem-scripts",
"version": "8.0.8",
"description": "Common scripts for my projects.",
"author": "Tane Morgan (https://github.com/tanem)",
"bin": {
"tanem-scripts": "dist/cli.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/tanem/tanem-scripts",
"bugs": "https://github.com/tanem/tanem-scripts/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/tanem/tanem-scripts.git"
},
"keywords": [
"changelog",
"changelog-generator",
"cli",
"generator",
"git",
"github",
"javascript",
"markdown",
"node",
"script",
"scripts",
"typescript"
],
"license": "MIT",
"dependencies": {
"@octokit/rest": "^22.0.1",
"commander": "^14.0.3",
"date-fns": "^4.1.0",
"execa": "^5.1.1",
"fs-extra": "^11.3.3",
"git-remote-origin-url": "^3.1.0",
"parse-github-url": "^1.0.3",
"prompt-promise": "^1.0.3",
"semver": "^7.7.4"
},
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/jest": "30.0.0",
"@types/lolex": "5.1.6",
"@types/node": "24.11.0",
"@types/parse-github-url": "1.0.3",
"@types/semver": "7.7.1",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"jest": "30.2.0",
"jest-jasmine2": "30.2.0",
"lolex": "6.0.0",
"make-dir": "5.1.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"shx": "0.4.0",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"scripts": {
"build": "run-s clean compile",
"check:format": "prettier --list-different \"**/*.{js,ts}\"",
"check:types": "tsc --noEmit",
"clean": "run-p clean:*",
"clean:dist": "shx rm -rf dist",
"compile": "tsc -p tsconfig.base.json",
"format": "prettier --write \"**/*.{js,ts}\"",
"lint": "eslint . --ext .js,.ts",
"test": "run-s check:* lint build test:*",
"test:cjs": "jest --config ./scripts/jest/config.cjs.js",
"test:src": "jest --config ./scripts/jest/config.src.js"
}
}