-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.31 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
82
83
84
85
86
87
88
89
{
"name": "cpx2",
"version": "8.0.0",
"description": "Copy file globs, watching for changes.",
"engines": {
"node": "^20.0.0 || >=22.0.0",
"npm": ">=10"
},
"main": "lib/index.js",
"bin": {
"cpx": "bin/index.js"
},
"scripts": {
"prepublishOnly": "git push --follow-tags && gh-release -y",
"version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"_mocha": "_mocha \"test/*.js\" --timeout 35000",
"clean": "rm -rf .nyc_output coverage test-ws",
"coverage": "nyc report -r lcov && opener coverage/lcov-report/index.html",
"lint": "eslint",
"test": "run-s test:*",
"test:lint": "eslint",
"test:installed-check": "installed-check --ignore-dev",
"test:mocha": "nyc --require @babel/register npm run -s _mocha",
"watch": "npm run -s _mocha -- --require @babel/register --watch --growl"
},
"dependencies": {
"debounce": "^2.0.0",
"debug": "^4.1.1",
"duplexer": "^0.1.1",
"fs-extra": "^11.1.0",
"glob": "^11.0.0",
"glob2base": "0.0.12",
"ignore": "^6.0.2",
"minimatch": "^10.0.1",
"p-map": "^7.0.0",
"resolve": "^1.12.0",
"safe-buffer": "^5.2.0",
"shell-quote": "^1.8.0",
"subarg": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/register": "^7.5.5",
"auto-changelog": "^2.2.0",
"babel-preset-power-assert": "^3.0.0",
"eslint": "^9.11.1",
"eslint-plugin-mocha": "^10.5.0",
"gh-release": "^7.0.2",
"installed-check": "^9.3.0",
"mocha": "^11.0.1",
"neostandard": "^0.12.0",
"npm-run-all2": "^7.0.1",
"nyc": "^17.0.0",
"opener": "^1.5.1",
"p-event": "^6.0.0",
"power-assert": "^1.6.1",
"shelljs": "^0.8.3",
"through": "^2.3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/cpx2.git"
},
"keywords": [
"cp",
"cli",
"tool",
"commandline",
"sync",
"rsync",
"watch",
"observe",
"copy",
"dir",
"directory",
"directories",
"file",
"files"
],
"author": "Toru Nagashima",
"contributors": [
"Bret Comnes <bcomnes@gmail.com> (https://bret.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/cpx2/issues"
},
"homepage": "https://github.com/bcomnes/cpx2"
}