-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "merge-dirs",
"version": "0.2.1",
"description": "node module to synchronously and recursively merge files from one folder to another",
"main": "dist/index.js",
"bin": "dist/bin.js",
"scripts": {
"clean": "rimraf test/c",
"prepublish": "babel src --out-dir dist",
"mocha": "mocha --reporter spec --timeout 300 --require should --growl --compilers js:babel-register test/test.js",
"test": "npm run clean && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/binocarlos/merge-dirs.git"
},
"keywords": [
"merge",
"folder",
"directory",
"recursive"
],
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"author": "Kai Davenport",
"license": "MIT",
"bugs": {
"url": "https://github.com/binocarlos/merge-dirs/issues"
},
"dependencies": {
"inquirer": "^0.11.0",
"minimist": "^1.2.0",
"node-fs": "~0.1.7",
"path": "^0.12.7"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"mocha": "~2.3.4",
"rimraf": "^2.4.4",
"should": "~8.0.1"
}
}