UNPKG

1.3 kBJSONView Raw
1{
2 "name": "tracer",
3 "description": "A powerful and customizable logging library for node.js. support color console with timestamp, line number, method name, file name and call stack. you can set transport to file, stream, database(ex: mongodb and clouddb, simpledb). keywords: log, logger, trace ",
4 "homepage": "http://github.com/baryon/tracer",
5 "repository": {
6 "type": "git",
7 "url": "git://github.com/baryon/tracer.git"
8 },
9 "version": "1.1.0",
10 "author": "LI Long <lilong@gmail.com>",
11 "license": "MIT",
12 "dependencies": {
13 "colors": "1.4.0",
14 "dateformat": "3.0.3",
15 "mkdirp": "^1.0.4",
16 "tinytim": "0.1.1"
17 },
18 "devDependencies": {
19 "cli-color": "^2.0.0",
20 "dtslint": "^3.6.0",
21 "eslint": "^6.8.0",
22 "mocha": "^7.1.1",
23 "mongoskin": "2.1.0",
24 "nyc": "^15.0.1",
25 "tslint": "^6.1.1",
26 "typescript": "^3.8.3"
27 },
28 "main": "./lib/index",
29 "types": "./types/index.d.ts",
30 "keywords": [
31 "log",
32 "logger",
33 "trace",
34 "debug"
35 ],
36 "scripts": {
37 "test": "mocha test/*",
38 "lint:fix": "eslint --fix .",
39 "lint": "eslint .",
40 "posttest": "npm run lint",
41 "test:coverage": "nyc npm run test",
42 "posttest:coverage": "npm run lint",
43 "dtslint": "dtslint types"
44 },
45 "engines": {
46 "node": ">= 0.10.0"
47 }
48}