-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.06 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
{
"name": "@karmaniverous/edge-logger",
"version": "1.3.12",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/karmaniverous/edge-logger"
},
"author": "Jason G. Williscroft",
"bugs": {
"url": "https://github.com/karmaniverous/edge-logger/issues"
},
"description": "A simple logging class that renders nicely-formatted logs and plays nicely with edge networks.",
"homepage": "https://github.com/karmaniverous/edge-logger#readme",
"keywords": [
"edge",
"logging",
"nextjs"
],
"license": "BSD-3-Clause",
"dependencies": {
"lodash.isarraylikeobject": "^4.2.0",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@babel/plugin-syntax-import-assertions": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/register": "^7.24.6",
"@types/node": "^20.14.11",
"babel-plugin-lodash": "^3.3.4",
"chai": "^5.1.1",
"concat-md": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-promise": "^6.4.0",
"mocha": "^10.6.0",
"release-it": "^17.6.0"
},
"exports": {
".": {
"import": "./lib/index.js",
"require": "./dist/default/lib/index.js"
}
},
"main": "./lib/index.js",
"mocha": {
"exclude": [
"./dist/**",
"./node_modules/**"
],
"require": [
"@babel/register"
],
"spec": "./**/*.test.!(*.*)"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": true
}
},
"scripts": {
"lint": "eslint lib/**",
"test": "mocha",
"build": "babel lib -d dist/default/lib --delete-dir-on-start --config-file ./dist/default/.babelrc",
"doc": "concat-md doc --hide-anchor-links > README.md",
"release": "release-it"
},
"type": "module"
}