package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "_from": "bs-logger@0.x",
  3. "_id": "bs-logger@0.2.6",
  4. "_inBundle": false,
  5. "_integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
  6. "_location": "/bs-logger",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "bs-logger@0.x",
  12. "name": "bs-logger",
  13. "escapedName": "bs-logger",
  14. "rawSpec": "0.x",
  15. "saveSpec": null,
  16. "fetchSpec": "0.x"
  17. },
  18. "_requiredBy": [
  19. "/ts-jest"
  20. ],
  21. "_resolved": "http://dev.dp.sagacloud.cn:8082/repository/npm-saga/bs-logger/-/bs-logger-0.2.6.tgz",
  22. "_shasum": "eb7d365307a72cf974cc6cda76b68354ad336bd8",
  23. "_spec": "bs-logger@0.x",
  24. "_where": "D:\\project\\persagy-web\\persagy-web-graph\\node_modules\\ts-jest",
  25. "author": {
  26. "name": "Huafu Gandon",
  27. "email": "huafu.gandon@gmail.com"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/huafu/bs-logger/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "fast-json-stable-stringify": "2.x"
  35. },
  36. "deprecated": false,
  37. "description": "Bare simple logger for NodeJS",
  38. "devDependencies": {
  39. "@commitlint/cli": "7.x",
  40. "@commitlint/config-conventional": "7.x",
  41. "@types/jest": "23.x",
  42. "@types/node": "10.x",
  43. "conventional-changelog-cli": "2.x",
  44. "husky": "0.x",
  45. "jest": "23.x",
  46. "lint-staged": "7.x",
  47. "prettier": "1.x",
  48. "rimraf": "2.x",
  49. "ts-jest": "23.x",
  50. "tslint": "5.x",
  51. "tslint-config-prettier": "1.x",
  52. "tslint-plugin-prettier": "2.x",
  53. "typescript": "3.x"
  54. },
  55. "engines": {
  56. "node": ">= 6"
  57. },
  58. "files": [
  59. "dist"
  60. ],
  61. "homepage": "https://github.com/huafu/bs-logger#readme",
  62. "keywords": [
  63. "bare simple logger",
  64. "simple logger",
  65. "simple",
  66. "logger",
  67. "typescript",
  68. "lib",
  69. "library"
  70. ],
  71. "license": "MIT",
  72. "lint-staged": {
  73. "linters": {
  74. "*.{ts,tsx}": [
  75. "tslint --fix",
  76. "git add"
  77. ]
  78. }
  79. },
  80. "main": "dist/index.js",
  81. "name": "bs-logger",
  82. "repository": {
  83. "type": "git",
  84. "url": "git+https://github.com/huafu/bs-logger.git"
  85. },
  86. "scripts": {
  87. "build": "tsc -p tsconfig.build.json",
  88. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
  89. "clean": "rimraf dist coverage",
  90. "commitmsg": "commitlint -E GIT_PARAMS",
  91. "lint": "tslint --project tsconfig.json --format stylish",
  92. "lint:fix": "tslint --fix --project tsconfig.json",
  93. "postcommit": "git reset",
  94. "posttest": "npm run typecheck && npm run lint",
  95. "postversion": "git push && git push --tags",
  96. "prebuild": "npm run clean",
  97. "precommit": "lint-staged",
  98. "prepare": "npm run build",
  99. "prepublishOnly": "npm run test",
  100. "preversion": "npm test",
  101. "test": "jest --coverage",
  102. "test:watch": "jest --watch",
  103. "typecheck": "tsc -p . --noEmit",
  104. "version": "npm run changelog && git add CHANGELOG.md"
  105. },
  106. "types": "dist/index.d.ts",
  107. "version": "0.2.6"
  108. }