-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 883 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 883 Bytes
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
{
"name": "yalm",
"version": "4.1.0",
"description": "A simple logging module.",
"main": "index.js",
"scripts": {
"test": "camo-purge && xo"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/yalm"
},
"keywords": [
"debug",
"log",
"logging",
"tools",
"console",
"stdout",
"stderr"
],
"author": "Sebastian Raff <hq@ccu.io>",
"contributors": [
"Daniel 'ColdFireIce' Becker",
"Simon Christmann https://github.com/dersimn"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/yalm/issues"
},
"homepage": "https://github.com/hobbyquaker/yalm",
"dependencies": {
"ansi-styles": "^3.2.0"
},
"devDependencies": {
"camo-purge": "latest",
"xo": "latest"
},
"xo": {
"space": 4,
"ignore": [
"test.js"
],
"esnext": false
}
}