-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (44 loc) · 940 Bytes
/
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
{
"name": "catberry-logger",
"version": "2.0.0",
"author": "Denis Rechkunov <[email protected]>",
"description": "Simple console logger for the Catberry Framework",
"homepage": "https://github.com/catberry/catberry-logger",
"keywords": [
"catberry",
"logger",
"console",
"isomorphic",
"universal"
],
"bugs": {
"url": "https://github.com/catberry/catberry-logger/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/catberry/catberry-logger.git"
},
"main": "./index.js",
"browser": {
"./lib/Logger.js": "./browser/Logger.js"
},
"dependencies": {
"pretty-hrtime": "^1.0.3",
"chalk": "^1.1.3"
},
"devDependencies": {
"eslint": "^3.18.0"
},
"peerDependencies": {
"catberry": "^9.0.0"
},
"engines": {
"node": ">=6.10"
},
"scripts": {
"test": "./node_modules/.bin/eslint ./",
"lint-fix": "./node_modules/.bin/eslint ./ --fix"
},
"license": "MIT"
}