-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "fs-error-logger",
"version": "1.0.9",
"description": "Writes errors into files in both JSON and XML.",
"main": "./src/fs-error-logger.js",
"directories": {
"docs": "docs",
"test": "test"
},
"scripts": {
"test": "NODE_ENV=test nyc mocha --reporter spec test/**/*_spec.js || true",
"doc": "./node_modules/.bin/jsdoc ./src/**.js -d ./docs -c ./jsdocConf.json -t ./node_modules/ink-docstrap/template -R ./docs/DOCS_README.md",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && ./node_modules/codecov/bin/codecov -t 32e5c44a-4eff-4361-8c07-e88e1d1ec027"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fl4m3Ph03n1x/fs-error-logger"
},
"keywords": [
"error",
"console.log",
"logger",
"log",
"errors",
"fs"
],
"author": "Pedro Miguel Pereira Serrano Martins",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fl4m3Ph03n1x/fs-error-logger/issues"
},
"homepage": "https://fl4m3ph03n1x.github.io/fs-error-logger/",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"nyc": "^11.8.0",
"rmdir": "^1.2.0",
"sinon": "^4.0.1"
},
"dependencies": {
"json-stringify-pretty-compact": "^1.0.4",
"lodash.isfunction": "^3.0.8",
"lodash.isstring": "^4.0.1",
"serialize-error": "^2.1.0",
"to-xml": "^0.1.4"
}
}