-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.18 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
{
"name": "@beforeyoubid/logger-adapter",
"version": "2.0.4",
"description": "A platform logger module to send the log messages to Mezmo (formerly LogDNA).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint --max-warnings 0 '**/*.{ts,tsx,js,jsx}' && tsc --noEmit",
"lint:fix": "eslint --fix --max-warnings 0 '**/*.{ts,tsx,js,jsx}'",
"test": "yarn build && jest",
"test:coverage": "yarn build && jest --watch --coverage",
"test:ci": "jest --verbose=false --coverage",
"test-only": "jest",
"build": "rimraf dist && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.build.json",
"build:js": "swc src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --ignore=.spec.js",
"ts": "tsc --noEmit",
"build-and-publish": "npm run build && npm publish --access public",
"build-and-publish-dryrun": "npm run build && npm publish --dry-run",
"build-and-publish-dryrun-ci": "npm run build && npm publish --registry http://localhost:4873"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beforeyoubid/npm-logger-adapter.git"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/beforeyoubid/npm-logger-adapter/issues"
},
"homepage": "https://github.com/beforeyoubid/npm-logger-adapter#readme",
"dependencies": {
"@logdna/logger": "^2.6.9",
"winston": "^3.13.0",
"winston-transport": "^4.7.0"
},
"devDependencies": {
"@swc/cli": "0.1.61",
"@swc/core": "1.3.35",
"@swc/jest": "0.2.24",
"@types/jest": "29.4.0",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"danger": "11.2.3",
"danger-plugin-yarn": "1.6.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^29.7.0",
"jest-junit": "15.0.0",
"prettier": "2.8.4",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"resolutions": {
"colors": "1.4.0"
}
}