-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tanem-scripts",
"version": "7.0.27",
"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": "github:tanem/tanem-scripts",
"keywords": [
"authors",
"changelog",
"changelog-generator",
"cli",
"generator",
"git",
"github",
"javascript",
"markdown",
"node",
"script",
"scripts",
"shortlog",
"typescript"
],
"license": "MIT",
"dependencies": {
"@octokit/rest": "^19.0.7",
"commander": "^13.1.0",
"date-fns": "^4.1.0",
"execa": "^5.1.1",
"fs-extra": "^11.3.0",
"git-remote-origin-url": "^3.1.0",
"parse-github-url": "^1.0.3",
"prompt-promise": "^1.0.3",
"semver": "^7.6.3"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "6.0.6",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister-fs": "6.0.6",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.14",
"@types/lolex": "5.1.6",
"@types/node": "22.10.7",
"@types/parse-github-url": "1.0.3",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"jest": "29.7.0",
"jest-jasmine2": "29.7.0",
"lolex": "6.0.0",
"make-dir": "5.0.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"shx": "0.3.4",
"ts-jest": "29.2.5",
"typescript": "5.7.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",
"release": "node dist/cli release",
"// test": "run-s check:* lint build test:*",
"test": "echo \"Tests temporarily disabled\"",
"test:cjs": "jest --config ./scripts/jest/config.cjs.js",
"test:src": "jest --config ./scripts/jest/config.src.js"
}
}