generated from WezomCompany/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@wezom/cli-log",
"version": "0.1.6",
"description": "CLI Log Utility",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"prebuild": "del-cli lib",
"postbuild": "del-cli lib/**/__specs__",
"test": "vitest run",
"test-with-watch-mode": "vitest",
"test-with-coverage": "vitest run --coverage && istanbul-badges-readme && prettier \"./README.md\" --check --write",
"lint": "eslint \"./src/**/**.ts\" --cache --cache-location ./.cache/eslint/src",
"lint-with-autofix": "pnpm run lint --fix",
"format": "prettier \"./src/**/*.ts\" --write --check",
"local-pr-ready-check": "pnpm run format && pnpm run lint-with-autofix && pnpm run test-with-coverage && pnpm run build",
"ci-test": "pnpm run lint && pnpm run test",
"prepublishOnly": "pnpm run build"
},
"keywords": [],
"author": "OlehDutchenko <[email protected]>",
"license": "BSD 3-Clause License",
"bugs": {
"url": "https://github.com/WezomCompany/cli-log/issues"
},
"homepage": "https://github.com/WezomCompany/cli-log#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WezomCompany/cli-log.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@vitest/coverage-istanbul": "^0.34.1",
"@wezom/eslint-config": "^11.0.5",
"@wezom/eslint-config-ts": "^11.0.5",
"del-cli": "^5.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"glob": "^10.3.3",
"istanbul-badges-readme": "^1.8.5",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"rollup": "^3.27.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"dependencies": {
"chalk": "^5.3.0",
"from-cwd": "^1.0.1"
}
}