package.json
1.98 KB
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
70
71
{
"_args": [
[
"coalescy@1.0.0",
"D:\\WS\\WebstormProjects\\222\\lawyer"
]
],
"_development": true,
"_from": "coalescy@1.0.0",
"_id": "coalescy@1.0.0",
"_inBundle": false,
"_integrity": "sha1-SwZYRrg2NhrabEtKSr9LwcrDG/E=",
"_location": "/coalescy",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "coalescy@1.0.0",
"name": "coalescy",
"escapedName": "coalescy",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/eslint-friendly-formatter"
],
"_resolved": "https://registry.npmjs.org/coalescy/-/coalescy-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "D:\\WS\\WebstormProjects\\222\\lawyer",
"author": {
"name": "Roy Riojas"
},
"bugs": {
"url": "https://github.com/royriojas/coalescy/issues"
},
"description": "Simple function that return the first non null or undefined argument ",
"devDependencies": {
"eslint": "^0.16.1",
"eslint-friendly-formatter": "^1.0.3",
"istanbul": "^0.3.7",
"mocha-runner": "^1.0.0",
"watch-spawn": "^1.0.2"
},
"homepage": "https://github.com/royriojas/coalescy",
"keywords": [
"coalesce",
"first",
"not",
"null",
"first",
"not",
"undefined",
"utility"
],
"license": "MIT",
"main": "index.js",
"name": "coalescy",
"repository": {
"type": "git",
"url": "git+https://github.com/royriojas/coalescy.git"
},
"scripts": {
"coverage": "istanbul cover -x 'specs/**/*.js' mocha-runner 'specs/**/*.js' html text-summary",
"coverage-cache": "istanbul cover -x 'specs/**/*.js' mocha-runner 'specs/**/*.js' html text-summary -- --useCache=true",
"lint": "eslint --format 'node_modules/eslint-friendly-formatter' lib/ bin/ specs/ -c './configs/eslint.json'",
"test": "mocha-runner './specs/**/*.js'",
"watch": "npm run coverage && watch-spawn -p 'specs/**/*.js' -p 'bin/**/*.js' -p 'lib/**/*.js' npm run coverage-cache"
},
"version": "1.0.0"
}