-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
137 lines (137 loc) · 4.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@xpack/logger",
"version": "6.0.0",
"description": "A Node.js CommonJS/ES6 module with a generic console logger class",
"type": "commonjs",
"exports": {
"node": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./cjs/index.d.ts",
"scripts": {
"compile-watch": "tsc --build --verbose --watch src",
"fix": "ts-standard --fix src tests && standard esm",
"compile": "tsc --build --verbose src",
"npm-install": "npm install",
"npm-link": "npm link",
"npm-link-deps": "npm link @xpack/mock-console",
"npm-outdated": "npm outdated",
"npm-update": "npm update",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"package": "npm pack",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"lint": "ts-standard src && standard esm",
"prepare": "npm run compile && npm run lint",
"pretest": "npm run lint",
"pretest-100": "npm run lint",
"pretest-100-c8": "npm run lint",
"tap": "tap --reporter=spec",
"tap-c8": "c8 tap --reporter=spec",
"test-tap": "tap",
"test-tap-coverage": "tap --coverage",
"test-tap-coverage-c8": "c8 -- tap",
"test-tap-coverage-100": "tap --coverage --100",
"test-tap-coverage-100-c8": "c8 --100 -- tap",
"test": "npm run test-tap -s",
"test-100": "npm run test-tap-coverage-100 -s",
"test-100-c8": "npm run test-tap-coverage-100-c8 -s",
"dev-cycle": "npm run fix && npm run compile && npm run test-100-c8",
"typedoc": "typedoc --logLevel Verbose",
"safari": "open -a Safari docs/index.html",
"clean": "del-cli docs cjs 'tests/**/cjs' 'src/**/*.d.ts' 'src/**/*.d.ts.map' 'src/**/*.js' 'src/**/*.js.map' 'tests/**/*.d.ts' 'tests/**/*.d.ts.map' 'tests/**/*.js' 'tests/**/*.js.map' '**/tsconfig.tsbuildinfo' .nyc_output coverage",
"deep-clean": "npm run clean && rm -rf node_modules package-lock.json",
"npm-version": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)",
"website-npm-link": "(cd website && npm link @xpack/docusaurus-template-liquid)",
"website-generate-commons-and-build": "bash website/node_modules/@xpack/docusaurus-template-liquid/maintenance-scripts/generate-commons-and-build.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/xpack/logger-ts.git"
},
"keywords": [
"cli",
"logger",
"log",
"console",
"level",
"silent",
"error",
"warn",
"info",
"verbose",
"debug",
"trace"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/logger-ts/issues"
},
"homepage": "https://xpack.github.io/logger-ts/",
"dependencies": {},
"devDependencies": {
"@types/node": "^16.18.14",
"@types/tap": "^15.0.8",
"c8": "^7.13.0",
"del-cli": "^5.0.0",
"liquidjs": "^10.18.0",
"standard": "^17.0.0",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typedoc": "^0.24.4",
"typescript": "^4.9.5"
},
"bundledDependencies": [],
"tap": {
"check-coverage": false,
"coverage": false,
"files": [
"tests/tap/*.ts"
],
"node-arg": [
"--loader=ts-node/esm"
],
"reporter": "classic",
"timeout": 30,
"ts": true
},
"eslintConfig": {
"rules": {
"max-len": [
"error",
80,
{
"ignoreUrls": true
}
]
}
},
"ts-standard": {
"ignore": [
"**/*.d.ts",
"**/*.js"
]
},
"engines": {
"node": " >=16.0.0"
},
"websiteConfig": {
"name": "Logger",
"title": "logger - The xPack Logger",
"metadataDescription": "A Node.js CommonJS/ES6 module with a generic console logger class",
"metadataKeywords": "xpm, xpack, build, test, dependencies, npm, reproducibility"
}
}