-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.88 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
{
"name": "@bemit/glog",
"version": "0.2.0",
"description": "Google Log abstraction for NodeJS as pure ESM.",
"homepage": "https://bemit.codes",
"author": {
"name": "bemit",
"url": "https://bemit.codes"
},
"contributors": [
{
"name": "Michael Becker",
"url": "https://i-am-digital.eu"
}
],
"license": "MIT",
"keywords": [
"log",
"google-log"
],
"type": "module",
"exports": {
"./LoggerAction": "./src/LoggerAction.js",
"./LoggerApi": "./src/LoggerApi.js",
"./LoggerGlobal": "./src/LoggerGlobal.js",
"./LoggerQuota": "./src/LoggerQuota.js",
"./LoggerTask": "./src/LoggerTask.js",
"./LogManager": "./src/LogManager.js",
"./performance": "./src/performance.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bemit/nodejs-glog.git"
},
"scripts": {
"prebuild": "npm run clean-dist && npm run test",
"build": "cross-env NODE_ENV=production CI=true npm run build-babel",
"postbuild": "npm run dtsgen",
"build-babel": "babel src --no-comments --extensions .ts --extensions .tsx --extensions .js --extensions .jsx --ignore **/*.d.ts --ignore **/*.test.ts --out-dir build",
"clean-dist": "rimraf build && rimraf coverage",
"test": "jest -c=\"jest.config.ts\" --passWithNoTests",
"tdd": "npm test -- --watch --watchman --coverage=false",
"dtsgen": "tsc -d --emitDeclarationOnly --pretty && node merge-dirs.js build/dts/src build && rm -rf build/dts && rimraf build/**/*.test.*"
},
"peerDependencies": {
"@google-cloud/logging": "^10.1.1 || ^11.1.0"
},
"devDependencies": {
"@google-cloud/logging": "^11.2.0",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/types": "^29.6.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^29.7.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-deprecation": "^1.6.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.36.1",
"jest": "^29.7.0",
"jest-runner-eslint": "^1.2.0",
"rimraf": "^3.0.2",
"symlink-dir": "^6.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
},
"jest-runner-eslint": {
"cliOptions": {
"maxWarnings": 0
}
}
}