-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
{
"name": "tiny-console-logger",
"version": "1.0.2",
"description": "Small and super simple console logger with log level, formatter and custom reporter support",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@types/mocha": "8.2.0",
"@types/node": "14.14.20",
"@types/sinon": "9.0.10",
"mocha": "8.2.1",
"prettier": "2.2.1",
"sinon": "9.2.3",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -f index.js* index.d.ts*",
"test": "mocha --watch-extensions js,ts --require ts-node/register *.test.ts",
"prettier": "prettier \"**/*.+(ts|js)\" --write",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcelbeumer/tiny-console-logger.git"
},
"author": "Marcel Beumer <marcel@marcelbeumer.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcelbeumer/tiny-console-logger/issues"
},
"homepage": "https://github.com/marcelbeumer/tiny-console-logger#readme",
"keywords": [
"logger",
"logging",
"log",
"console",
"reporter",
"minimal",
"small",
"tiny"
]
}