-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.07 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.07 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
{
"name": "versionings",
"version": "1.0.7",
"description": "Semantic versioning automation CLI for Git repositories — bumps versions, creates branches and tags, opens pull requests.",
"main": "out/dist/index.js",
"bin": {
"versionings": "out/dist/index.js"
},
"types": "out/tsc/index.d.ts",
"files": [
"out/",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf out",
"build": "node esbuild.config.mjs && tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts'",
"test": "jest --no-coverage --forceExit",
"test:unit": "jest --testPathPattern='__tests__/unit/' --no-coverage",
"test:integration": "jest --testPathPattern='__tests__/integration/' --no-coverage",
"test:e2e": "jest --testPathPattern='__tests__/e2e/' --no-coverage",
"test:e2e:pack": "bash scripts/test-pack.sh",
"test:properties": "jest --testPathPattern='__tests__/properties/' --no-coverage",
"test:ci": "jest --ci --forceExit"
},
"keywords": [
"version",
"versioning",
"semver",
"semantic-versioning",
"git",
"release",
"changelog",
"branching",
"cli",
"automation"
],
"author": "Raman Marozau <engineer.morozov@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/morozow/versionings",
"repository": {
"type": "git",
"url": "git+https://github.com/morozow/versionings.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ajv": "^8.17.1",
"js-yaml": "^4.1.0",
"open": "^8.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"esbuild": "^0.27.4",
"esbuild-jest": "^0.5.0",
"eslint": "^8.57.0",
"fast-check": "^3.22.0",
"jest": "^29.7.0",
"typescript": "^6.0.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "esbuild-jest"
}
}
}