This repository has been archived by the owner on Jan 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
76 lines (76 loc) · 1.52 KB
/
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
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
{
"name": "bugsnag-sourcemaps",
"version": "1.3.0",
"keywords": [
"bugsnag",
"source-maps"
],
"homepage": "https://github.com/bugsnag/bugsnag-sourcemaps",
"bugs": {
"url": "https://github.com/bugsnag/bugsnag-sourcemaps/issues"
},
"bin": "cli.js",
"license": "MIT",
"author": {
"name": "Jacob Marshall",
"email": "[email protected]",
"url": "https://j.msh.al"
},
"repository": {
"type": "git",
"url": "https://github.com/bugsnag/bugsnag-sourcemaps.git"
},
"dependencies": {
"concat-stream": "^2.0.0",
"form-data": "^2.3.3",
"glob": "^7.1.4",
"graceful-fs": "^4.1.11",
"kleur": "^3.0.3",
"meow": "^3.7.0",
"once": "^1.4.0",
"rc": "^1.2.8",
"read-pkg-up": "^2.0.0",
"run-parallel-limit": "^1.0.5"
},
"devDependencies": {
"coveralls": "^2.13.1",
"express": "^4.16.4",
"jest": "^20.0.4",
"standard": "^12.0.1"
},
"scripts": {
"test": "standard && jest --ci",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"index.js",
"cli.js",
"lib/*"
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"**/*.js",
"!**/*.test.js",
"!node_modules/**/*",
"!example/**/*",
"!test/**/*"
],
"coverageReporters": [
"lcov"
]
},
"standard": {
"ignore": [
"node_modules",
"example",
"coverage",
"test/fixtures",
"scratch"
],
"env": [
"jest"
]
}
}