-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.03 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "copy-file-util",
"version": "1.2.2",
"description": "Copy or rename a file with optional package version number (CLI tool designed for use in npm package.json scripts)",
"license": "MIT",
"type": "module",
"module": "dist/copy-file.js",
"types": "dist/copy-file.d.ts",
"exports": "./dist/copy-file.js",
"files": [
"dist"
],
"bin": {
"copy-file": "bin/cli.js",
"copy-file-util": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/copy-file-util.git"
},
"homepage": "https://github.com/center-key/copy-file-util",
"bugs": "https://github.com/center-key/copy-file-util/issues",
"docs": "https://github.com/center-key/copy-file-util#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"cli",
"copy",
"cp",
"file",
"rename",
"scripts"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"varstmt": true,
"node": true,
"mocha": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist spec/fixtures/target"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"build": [
"tsc",
"add-dist-header build dist"
]
},
"scripts": {
"pretest": "run-scripts clean lint build",
"test": "mocha spec/*.spec.js"
},
"dependencies": {
"chalk": "~5.3",
"cli-argv-util": "~1.2",
"dna-engine": "~3.2",
"fancy-log": "~2.0",
"slash": "~5.1"
},
"devDependencies": {
"@eslint/js": "~9.9",
"@types/fancy-log": "~2.0",
"@types/node": "~22.3",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"eslint": "~9.9",
"jshint": "~2.13",
"mocha": "~10.7",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.5",
"typescript-eslint": "~8.1"
}
}