-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 2.45 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
{
"name": "missionlog",
"version": "1.8.9",
"description": "🚀 lightweight TypeScript logger • level based filtering and tagging • weighs in at 500 bytes",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"tsconfig.json",
"src/index.ts",
"tests/log.test.ts"
],
"browserslist": [
">0.5%",
"not ie <= 11",
"not op_mini all",
"not ie_mob <= 11",
"not dead",
"node 16"
],
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir . --extensions \".ts\"",
"coverage": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "tsc --noEmit",
"release": "standard-version",
"test": "jest ./tests/log.test.ts"
},
"homepage": "https://github.com/rmartone/missionlog#readme",
"repository": {
"type": "git",
"url": "https://github.com/rmartone/missionlog"
},
"keywords": [
"log",
"logger",
"logging",
"browser",
"node",
"mobile",
"front-end",
"backend",
"isomorphic",
"typescript",
"minimal"
],
"engines": {
"node": ">=16.0.0"
},
"author": "Ray Martone <rmartone@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.26.0",
"core-js": "^3.40.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"babel-jest": "^29.7.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-ts-optchain": "^1.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"typescript": "5.7.3"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120
},
"babel": {
"comments": false,
"presets": [
[
"@babel/preset-env",
{
"bugfixes": true,
"useBuiltIns": "usage",
"corejs": 3
}
],
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}