-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
83 lines (83 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@ekino/logger",
"description": "A Lightweight logger that combines debug namespacing capabilities with winston levels and multioutput",
"homepage": "https://github.com/ekino/node-logger",
"license": "MIT",
"version": "2.1.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"tags": [
"logger",
"lightweight",
"namespaces"
],
"repository": {
"type": "git",
"url": "https://github.com/ekino/node-logger.git"
},
"maintainers": [
{
"name": "Ekino"
}
],
"engines": {
"node": ">=14"
},
"dependencies": {
"colors": "1.x",
"prettyoutput": "1.x",
"uuid": "8.x"
},
"devDependencies": {
"@commitlint/config-conventional": "17.x",
"@types/node": "18.x",
"@types/uuid": "8.x",
"ava": "4.x",
"commitlint": "17.x",
"conventional-changelog": "3.x",
"conventional-changelog-cli": "2.x",
"coveralls": "3.x",
"eslint": "8.x",
"husky": "8.x",
"nyc": "15.x",
"prettier": "2.x",
"sinon": "14.x",
"ts-node": "10.x",
"typescript": "4.x"
},
"scripts": {
"fmt": "prettier --color --write \"{*,test/**/*}.{js,ts}\" --cache",
"check-fmt": "prettier --list-different \"{*,test/**/*}.{js,ts}\"",
"build": "tsc --build tsconfig.lib.json",
"prepublishOnly": "rm -rf lib && yarn build",
"test": "ava",
"test-cover": "nyc ava",
"coverage": "nyc ava | coveralls",
"version": "echo ${npm_package_version}",
"lint": "eslint ."
},
"eslintIgnore": [
"lib",
"examples"
],
"ava": {
"files": [
"test/**/*.js"
],
"extensions": [
"js"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"reporter": [
"lcov",
"text-lcov"
]
}
}