-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "script-selector",
"private": false,
"type": "module",
"version": "1.0.3",
"description": "Basic Dev-util that lets you visualize and select a script from your package.json. Compatible with most Package Managers/engines.",
"author": "Santiago Persico",
"license": "MIT",
"main": "index.js",
"bin": {
"script-selector": "./index.js",
"scripts": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "vitest run",
"test:watch": "vitest",
"dummyScriptForTests": "echo 'dummy'",
"release": "npm version patch --git-tag-version && git push --follow-tags"
},
"dependencies": {
"inquirer": "^12.0.1",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0"
},
"devDependencies": {
"vitest": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spersico/script-selector.git"
},
"bugs": {
"url": "https://github.com/spersico/script-selector/issues"
},
"homepage": "https://github.com/spersico/script-selector",
"keywords": [
"cli",
"devTool",
"npm",
"yarn",
"scripts"
]
}