-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "cpr",
"description": "cp -R",
"author": "Dav Glass <davglass@gmail.com>",
"version": "3.0.1",
"dependencies": {
"graceful-fs": "^4.1.5",
"minimist": "^1.2.0",
"mkdirp": "~0.5.1",
"rimraf": "^2.5.4"
},
"main": "./lib/index.js",
"typings": "./cpr.d.ts",
"bin": "./bin/cpr",
"devDependencies": {
"github-changes": "^1.0.4",
"jenkins-mocha": "^4.0.0",
"jshint": "^2.9.2",
"nyc": "^11.0.2",
"yui-lint": "~0.2.0"
},
"contributors": [
"soyuka <soyuka@gmail.com>",
"fresheneesz <bitetrudpublic@gmail.com>",
"silverwind <me@silverwind.io>",
"Peter deHaan <peter@deseloper.com>",
"André Cruz <andremiguelcruz@msn.com>",
"Brian J Brennan <brianloveswords@gmail.com>",
"Elijah Insua <tmpvar@gmail.com>",
"Jonny Reeves <github@jonnyreeves.co.uk>",
"Lydie Danet <lydie@happinov.fr>",
"Ben Elliott <4996462+benelliott@users.noreply.github.com>"
],
"keywords": [
"copy",
"recursive",
"cp -r",
"cp"
],
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
"windows-test": "jenkins-mocha ./tests/full.js",
"test": "jenkins-mocha ./tests/full.js",
"posttest": "nyc report",
"changes": "github-changes -o davglass -r cpr"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 90,
"check-coverage": true,
"reporter": [
"text",
"text-summary"
]
},
"bugs": {
"url": "http://github.com/davglass/cpr/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/davglass/cpr.git"
}
}