-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "doctorenv-cli",
"version": "0.0.13",
"description": "Helps you to make easy to onboard new developers to your project.",
"main": "src/index.js",
"bin": {
"doctorenv": "./bin"
},
"files": [
"bin",
"README.md",
"package.json"
],
"scripts": {
"start": "tsx ./src/index.js",
"dev": "tsx --watch ./src/index.js",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsx build.js",
"publish": "npm run build && np",
"version": "auto-changelog -p && git add CHANGELOG.md",
"contributors:add": "all-contributors add"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"cli",
"tool",
"checker",
"doctor"
],
"author": "raphael kieling <https://github.com/raphaelkieling>",
"license": "MIT",
"devDependencies": {
"@inquirer/prompts": "^3.2.0",
"@listr2/prompt-adapter-enquirer": "^1.0.1",
"@vitest/coverage-v8": "^0.34.6",
"auto-changelog": "^2.4.0",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"cosmiconfig": "^8.3.6",
"enquirer": "^2.4.1",
"esbuild": "^0.19.4",
"execa": "^8.0.1",
"joi": "^17.11.0",
"listr2": "^7.0.1",
"node-banner": "^1.4.0",
"np": "^8.0.4",
"tsx": "^3.13.0",
"vitest": "^0.34.6",
"yargs": "^17.7.2"
}
}