-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 2.79 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
{
"name": "missionlog",
"version": "1.8.8",
"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 && eslint src/*.ts --fix",
"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.22.5",
"core-js": "^3.31.0"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/register": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-jest": "^29.5.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-ts-optchain": "^1.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"typescript": "5.1.6"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
},
"babel": {
"comments": false,
"presets": [
[
"@babel/preset-env",
{
"bugfixes": true,
"useBuiltIns": "usage",
"corejs": 3
}
],
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}