1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "merge-descriptors",
|
3 |
|
|
"description": "Merge objects using descriptors",
|
4 |
|
|
"version": "1.0.1",
|
5 |
|
|
"author": {
|
6 |
|
|
"name": "Jonathan Ong",
|
7 |
|
|
"email": "me@jongleberry.com",
|
8 |
|
|
"url": "http://jongleberry.com",
|
9 |
|
|
"twitter": "https://twitter.com/jongleberry"
|
10 |
|
|
},
|
11 |
|
|
"contributors": [
|
12 |
|
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
13 |
|
|
"Mike Grabowski <grabbou@gmail.com>"
|
14 |
|
|
],
|
15 |
|
|
"license": "MIT",
|
16 |
|
|
"repository": "component/merge-descriptors",
|
17 |
|
|
"devDependencies": {
|
18 |
|
|
"istanbul": "0.4.1",
|
19 |
|
|
"mocha": "1.21.5"
|
20 |
|
|
},
|
21 |
|
|
"files": [
|
22 |
|
|
"HISTORY.md",
|
23 |
|
|
"LICENSE",
|
24 |
|
|
"README.md",
|
25 |
|
|
"index.js"
|
26 |
|
|
],
|
27 |
|
|
"scripts": {
|
28 |
|
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
29 |
|
|
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
|
30 |
|
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
|
31 |
|
|
}
|
32 |
|
|
}
|