forked from achingbrain/coveralls-lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "coveralls-lerna",
"version": "0.0.5",
"description": "Collates coverage data from lerna monorepos and sends it to Coveralls",
"main": "index.js",
"bin": {
"coveralls-lerna": "./bin/index.js"
},
"scripts": {
"test": "mocha",
"lint": "standard",
"coverage": "nyc --reporter=lcov npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"coveralls"
],
"repository": {
"type": "git",
"url": "git@github.com:achingbrain/coveralls-lerna.git"
},
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chance": "^1.0.4",
"coveralls": "^3.0.9",
"eslint": "^3.3.1",
"lodash": "^4.15.0",
"mocha": "^3.0.0",
"nyc": "^8.1.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"standard": "^14.3.1"
},
"dependencies": {
"fs-extra": "^8.1.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"xml2js": "^0.4.17",
"yargs": "^17.4.0"
}
}