-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 979 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
{
"name": "lllog",
"version": "1.1.2",
"description": "A minimal zero-dependency logger",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./lib ./tests",
"test": "mocha --recursive tests/",
"test:ci": "nyc --reporter=html --reporter=text mocha --recursive tests/",
"coverage": "nyc npm test"
},
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/jormaechea/lllog.git"
},
"keywords": [
"logger",
"log",
"minimal",
"logs",
"node",
"logging"
],
"author": "Joaquín Ormaechea",
"license": "MIT",
"bugs": {
"url": "https://github.com/jormaechea/lllog/issues"
},
"homepage": "https://github.com/jormaechea/lllog#readme",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
}
}