-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 861 Bytes
/
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
{
"name": "coalesce-strategy",
"version": "1.0.4",
"description": "A nodejs module to coalesce javascript objects into a central model",
"main": "./lib/coalesce-strategy.js",
"scripts": {
"test": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage ./test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Vorror/coalesce-strategy.git"
},
"keywords": [
"merge",
"merging",
"priority",
"coalesce",
"coalesce-strategy"
],
"author": "Paul Miller <miller874@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vorror/coalesce-strategy/issues"
},
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2"
}
}