1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "nice-try",
|
3 |
|
|
"version": "1.0.5",
|
4 |
|
|
"authors": [
|
5 |
|
|
"Tobias Reich <tobias@electerious.com>"
|
6 |
|
|
],
|
7 |
|
|
"description": "Tries to execute a function and discards any error that occurs",
|
8 |
|
|
"main": "src/index.js",
|
9 |
|
|
"keywords": [
|
10 |
|
|
"try",
|
11 |
|
|
"catch",
|
12 |
|
|
"error"
|
13 |
|
|
],
|
14 |
|
|
"license": "MIT",
|
15 |
|
|
"homepage": "https://github.com/electerious/nice-try",
|
16 |
|
|
"repository": {
|
17 |
|
|
"type": "git",
|
18 |
|
|
"url": "https://github.com/electerious/nice-try.git"
|
19 |
|
|
},
|
20 |
|
|
"files": [
|
21 |
|
|
"src"
|
22 |
|
|
],
|
23 |
|
|
"scripts": {
|
24 |
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
25 |
|
|
"test": "nyc node_modules/mocha/bin/_mocha"
|
26 |
|
|
},
|
27 |
|
|
"devDependencies": {
|
28 |
|
|
"chai": "^4.1.2",
|
29 |
|
|
"coveralls": "^3.0.0",
|
30 |
|
|
"nyc": "^12.0.1",
|
31 |
|
|
"mocha": "^5.1.1"
|
32 |
|
|
}
|
33 |
|
|
}
|