-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
{
"name": "stdcli",
"version": "1.0.0",
"main": "src/index.js",
"bin": {
"stdcli": "src/cli.js"
},
"type": "module",
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:watch:coverage": "jest --watch --coverage",
"lint": "eslint . --fix",
"format": "prettier --write . \"**/*.{js,json,cjs,mjs,md,html,yml}\"",
"start": "node src/cli.js"
},
"keywords": [
"cli",
"command-line",
"automation",
"developer-tools",
"productivity",
"scaffolding",
"generator"
],
"author": "Ion Gireada <shytiger@yahoo.com>",
"license": "MIT",
"description": "A command-line interface for streamlining repetitive tasks and boosting developer productivity.",
"repository": {
"type": "git",
"url": "https://github.com/ioncakephper/stdcli.git"
},
"bugs": {
"url": "https://github.com/ioncakephper/stdcli/issues"
},
"homepage": "https://github.com/ioncakephper/stdcli#readme",
"devDependencies": {
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jest": "^30.2.0",
"prettier": "^3.7.3"
},
"dependencies": {
"commander": "^14.0.2",
"commander-pkg-meta": "^1.0.1",
"cosmiconfig": "^9.0.0",
"globby": "^16.0.0"
}
}