This repository was archived by the owner on Mar 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.68 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@shower/cli",
"description": "Command line interface for Shower",
"version": "0.4.0",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Nikolay Govorov",
"email": "nikolay_govorov@bk.ru"
},
"homepage": "https://github.com/shower/cli",
"repository": {
"type": "git",
"url": "git://github.com/shower/cli.git"
},
"bugs": {
"url": "https://github.com/shower/cli/issues"
},
"license": "MIT",
"keywords": [
"shower",
"presentation",
"cli"
],
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"shower": "bin/cli.js"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"eslint": "^10.0.2",
"globals": "^16.0.0",
"jest": "^30.2.0",
"lint-staged": "^16.3.2",
"pdf-parse": "^2.4.5",
"pre-commit": "^1.0.10"
},
"dependencies": {
"browser-sync": "^3.0.4",
"chalk": "^5.6.2",
"chrome-launcher": "^1.2.1",
"del": "^8.0.1",
"execa": "^9.6.1",
"gh-pages": "^6.3.0",
"gulp-rename": "^2.1.0",
"gulp-replace": "^1.1.4",
"gulp-template": "^6.1.0",
"gulp-zip": "^6.1.0",
"inquirer": "^13.3.0",
"listr": "^0.14.3",
"merge-stream": "^2.0.0",
"puppeteer-core": "^24.38.0",
"semver": "^7.7.4",
"tmp": "^0.2.5",
"update-notifier": "^7.3.1",
"vinyl-fs": "^4.0.2",
"yargs": "^18.0.0"
},
"pre-commit": [
"lint-staged"
],
"jest": {
"testEnvironment": "node",
"transform": {},
"testMatch": [
"<rootDir>/**/__tests__/*.test.js"
]
},
"scripts": {
"lint-staged": "lint-staged",
"lint": "eslint **/*.js --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest && npm run lint"
}
}