-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "semy",
"version": "1.3.1",
"description": "Set a semantic version value onto the package.json for a NodeJs project (directly or interactively)",
"main": "bin/run.js",
"license": "MIT",
"type": "commonjs",
"engines": {
"node": ">=12.17.0"
},
"bin": {
"semy": "bin/run.js",
"semmy": "bin/run.js",
"semsem": "bin/run.js"
},
"keywords": [
"semantic versioning",
"semver",
"version",
"versioning"
],
"scripts": {
"start": "bin/run.js",
"format": "eslint bin --fix",
"lint": "eslint bin"
},
"author": "David Nunez <[email protected]>",
"homepage": "https://github.com/arizonatribe/semy",
"repository": {
"type": "git",
"url": "[email protected]:arizonatribe/semy.git"
},
"dependencies": {
"@vanillas/cli-toolkit": "^1.4.0",
"@vanillas/chalk-console-logger": "^1.0.0",
"prompts": "^2.4.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@vanillas/eslint-config": "^1.0.0",
"eslint": "^8.0.0",
"typescript": "^4.1.3"
}
}