-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
81 lines (81 loc) · 1.92 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": "cpx",
"version": "1.5.0",
"description": "Copy file globs, watching for changes.",
"engines": {
"node": ">=6.5"
},
"main": "lib/index.js",
"bin": "bin/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"_mocha": "_mocha \"test/*.js\" --timeout 15000",
"clean": "rimraf .nyc_output coverage test-ws",
"codecov": "nyc report -r lcovonly && codecov",
"coverage": "nyc report -r lcov && opener coverage/lcov-report/index.html",
"lint": "eslint bin lib test",
"postversion": "git push && git push --tags",
"pretest": "npm run -s lint",
"preversion": "npm test",
"test": "nyc --require babel-register npm run -s _mocha",
"watch": "npm run -s _mocha -- --require babel-register --watch --growl"
},
"dependencies": {
"co": "^4.6.0",
"debounce": "^1.1.0",
"debug": "^3.1.0",
"duplexer": "^0.1.1",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"glob2base": "0.0.12",
"minimatch": "^3.0.4",
"resolve": "^1.8.1",
"safe-buffer": "^5.1.2",
"shell-quote": "^1.6.1",
"subarg": "^1.0.0"
},
"devDependencies": {
"@mysticatea/eslint-plugin": "^5.0.1",
"babel-preset-power-assert": "^2.0.0",
"babel-register": "^6.26.0",
"codecov": "^3.0.2",
"eslint": "^5.0.1",
"mocha": "^5.2.0",
"nyc": "12.0.2",
"opener": "^1.4.3",
"p-event": "^2.0.0",
"power-assert": "^1.6.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.2",
"through": "^2.3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/mysticatea/cpx.git"
},
"keywords": [
"cp",
"cli",
"tool",
"commandline",
"sync",
"rsync",
"watch",
"observe",
"copy",
"dir",
"directory",
"directories",
"file",
"files"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/cpx/issues"
},
"homepage": "https://github.com/mysticatea/cpx"
}