package.json
3.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"_from": "coveralls@^3.0.11",
"_id": "coveralls@3.1.0",
"_inBundle": false,
"_integrity": "sha1-E8dU1eei3YtE/lJp4hyjlPtNYVs=",
"_location": "/coveralls",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "coveralls@^3.0.11",
"name": "coveralls",
"escapedName": "coveralls",
"rawSpec": "^3.0.11",
"saveSpec": null,
"fetchSpec": "^3.0.11"
},
"_requiredBy": [
"/tap"
],
"_resolved": "https://registry.npm.taobao.org/coveralls/download/coveralls-3.1.0.tgz",
"_shasum": "13c754d5e7a2dd8b44fe5269e21ca394fb4d615b",
"_spec": "coveralls@^3.0.11",
"_where": "F:\\budongchan_quanji_work\\ODM\\src\\main\\webapp\\static\\jquery-validation\\1.11.0\\node_modules\\tap",
"author": {
"name": "Gregg Caines"
},
"bin": {
"coveralls": "bin/coveralls.js"
},
"bugs": {
"url": "https://github.com/nickmerwin/node-coveralls/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Gregg Caines",
"email": "gregg@caines.ca",
"url": "http://caines.ca"
},
{
"name": "Joshua Ma",
"email": "github@joshma.com",
"url": "http://joshma.com"
},
{
"name": "Alan Gutierrez",
"email": "alan@prettyrobots.com",
"url": "http://www.prettyrobots.com/"
},
{
"name": "Kir Belevich",
"url": "https://github.com/svg"
},
{
"name": "elliotcable",
"email": "github@elliottcable.name",
"url": "http://elliottcable.name/"
},
{
"name": "Slotos",
"email": "slotos@gmail.com",
"url": "http://slotos.net"
},
{
"name": "mattjmorrison",
"email": "mattjmorrison@mattjmorrison.com",
"url": "http://mattjmorrison.com"
},
{
"name": "Arpad Borsos",
"email": "arpad.borsos@googlemail.com",
"url": "http://swatinem.de/"
},
{
"name": "Adam Moss",
"url": "https://github.com/adam-moss"
}
],
"dependencies": {
"js-yaml": "^3.13.1",
"lcov-parse": "^1.0.0",
"log-driver": "^1.2.7",
"minimist": "^1.2.5",
"request": "^2.88.2"
},
"deprecated": false,
"description": "takes json-cov output into stdin and POSTs to coveralls.io",
"devDependencies": {
"jshint": "^2.11.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"should": "^9.0.2",
"shx": "^0.3.2",
"sinon": "^7.5.0"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=6"
},
"files": [
"{bin,lib}/*.js",
"index.js"
],
"homepage": "https://github.com/nickmerwin/node-coveralls#readme",
"keywords": [
"coverage",
"coveralls"
],
"license": "BSD-2-Clause",
"main": "index.js",
"maintainers": [
{
"name": "Nick Merwin",
"email": "nick@coveralls.io",
"url": "https://coveralls.io"
}
],
"name": "coveralls",
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "git://github.com/nickmerwin/node-coveralls.git"
},
"scripts": {
"lint": "jshint ./lib ./test ./index.js",
"mocha": "_mocha -b -R spec",
"test": "npm run lint && npm run mocha",
"test-cov": "nyc npm run mocha",
"test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose"
},
"version": "3.1.0"
}