-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 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
{
"name": "sync-glob",
"version": "1.4.0",
"description": "Synchronize files and folders locally by glob patterns, watch option included.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir ./",
"predev": "npm run build",
"dev": "node bin/sync-glob.js",
"docs": "documentation build src/ --output API.md --format md",
"prehelp": "npm run build",
"help": "node bin/sync-glob.js --help",
"preversion": "npm run build",
"version": "node bin/sync-glob.js --version",
"test": "jest --runInBand --verbose --no-cache --config ./.jestrc.json",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"prepublish": "npm run build"
},
"bin": {
"sync-glob": "bin/sync-glob.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AndyOGo/node-sync-glob.git"
},
"keywords": [
"rsync",
"copy",
"cp",
"cpw",
"copyw",
"catw",
"folder",
"directory",
"file",
"glob"
],
"author": "Andreas Deuschlinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndyOGo/node-sync-glob/issues"
},
"homepage": "https://github.com/AndyOGo/node-sync-glob",
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"fs-extra": "^1.0.0",
"glob-all": "^3.1.0",
"yargs": "^6.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-jest": "^18.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-es2015-destructuring": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"dir-compare": "^1.4.0",
"documentation": "^4.0.0-beta.18",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"jest": "^19.0.2"
}
}