-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.71 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
{
"name": "lorikeet-logger",
"version": "1.1.3",
"description": "A logger which unpacks and colors the output.",
"type": "commonjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=16.13.0"
},
"scripts": {
"build": "tsup",
"build:test": "tsup --config tsup.config.spec.ts",
"test": "npm run build:test && echo '###### CJS: ###### ' && mocha tap dist/test/cjs/test && echo '###### ESM: ######' && mocha dist/test/esm/test",
"prepublishOnly": "npm run build",
"dev": "tsup --watch --silent --onSuccess 'node dist/index.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whatar/lorikeet-logger.git"
},
"keywords": [
"logger",
"util",
"color",
"output",
"parrot",
"console",
"log"
],
"author": "Whatar",
"license": "MIT",
"bugs": {
"url": "https://github.com/whatar/lorikeet-logger/issues"
},
"homepage": "https://github.com/whatar/lorikeet-logger#readme",
"dependencies": {
"dotenv": "^16.4.5",
"util": "^0.12.4"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}