-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.08 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "node-cli-temple",
"description": "node-cli-temple",
"version": "1.0.0",
"author": {
"name": "template-user",
"email": "template-user@foo-mail.com",
"url": "https://github.com/bridgewwater/node-cli-temple"
},
"bin": {
"node-cli-temple": "./bin/node-cli-temple.js"
},
"bugs": {
"url": "https://github.com/bridgewwater/node-cli-temple/issues"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^14.0.3",
"inquirer": "^12.6.1",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"log4js": "^6.9.1",
"minimatch": "^10.2.5",
"moment": "^2.30.1",
"shelljs": "^0.10.0",
"string-format": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^28.12.0",
"globals": "^16.5.0",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"regenerator-runtime": "^0.14.1",
"replace-lockfile-registry": "^0.0.2",
"rimraf": "6.1.3",
"semver": "^7.7.4"
},
"engines": {
"node": ">=20.0"
},
"homepage": "https://github.com/bridgewwater/node-cli-temple#readme",
"keywords": [
"cli",
"node",
"node-cli-temple"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bridgewwater/node-cli-temple.git"
},
"scripts": {
"clean:lockfile": "npx replace-lockfile-registry --registry https://registry.npmjs.org/",
"clean:rimraf": "npx rimraf node_modules package-lock.json",
"cli:help": "node bin/node-cli-temple.js -h",
"format": "npx prettier --write eslint.config.mjs \"{bin,src,tests}/**/*.{js,mjs,vue,ts,tsx}\"",
"format:check": "npx prettier --check \"{src,tests}/**/*.{js,mjs,vue,ts,tsx}\"",
"jest:collectCoverage": "npx jest --collectCoverage --silent",
"jest:coverage": "npx jest --ci --coverage --silent",
"lint": "npm run lint:eslint",
"lint:eslint": "npx eslint \"{bin,src,tests}/**/*.{js,mjs,vue,ts,tsx}\" --max-warnings 0",
"lint:eslintNoWarning": "npx eslint --cache --max-warnings 0 \"{bin,src,tests}/**/*.{js,mjs,vue,ts,tsx}\" --fix",
"test": "npx jest --ci"
}
}