-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 961 Bytes
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
{
"name": "semver-auto",
"version": "1.5.1",
"description": "Automate the package.json versioning by assessing changes in dependencies",
"main": "./dist/index.ts",
"bin": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"semver-auto": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/an2n/semver-auto.git"
},
"keywords": [
"semantic",
"versioning",
"automation",
"Node.js"
],
"author": "Anton Lilleby",
"license": "MIT",
"bugs": {
"url": "https://github.com/an2n/semver-auto/issues"
},
"homepage": "https://github.com/an2n/semver-auto#readme",
"devDependencies": {
"@opentf/cli-pbar": "0.1.8",
"@tsconfig/node-lts": "18.12.5",
"@types/node": "20.9.1",
"@types/semver": "7.5.5",
"commander": "11.1.0",
"prettier": "3.1.0",
"semver": "7.5.4",
"tsup": "8.0.1",
"typescript": "5.2.2"
}
}