web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.0 KiB

  1. {
  2. "name": "lower-case",
  3. "version": "2.0.2",
  4. "description": "Transforms the string to lower case",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "module": "dist.es2015/index.js",
  8. "sideEffects": false,
  9. "jsnext:main": "dist.es2015/index.js",
  10. "files": [
  11. "dist/",
  12. "dist.es2015/",
  13. "LICENSE"
  14. ],
  15. "scripts": {
  16. "lint": "tslint \"src/**/*\" --project tsconfig.json",
  17. "build": "rimraf dist/ dist.es2015/ && tsc && tsc -P tsconfig.es2015.json",
  18. "specs": "jest --coverage",
  19. "test": "npm run build && npm run lint && npm run specs",
  20. "size": "size-limit",
  21. "prepare": "npm run build"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/blakeembrey/change-case.git"
  26. },
  27. "keywords": [
  28. "lower",
  29. "case",
  30. "downcase",
  31. "locale",
  32. "convert",
  33. "transform"
  34. ],
  35. "author": {
  36. "name": "Blake Embrey",
  37. "email": "hello@blakeembrey.com",
  38. "url": "http://blakeembrey.me"
  39. },
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/blakeembrey/change-case/issues"
  43. },
  44. "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/lower-case#readme",
  45. "size-limit": [
  46. {
  47. "path": "dist/index.js",
  48. "limit": "250 B"
  49. }
  50. ],
  51. "jest": {
  52. "roots": [
  53. "<rootDir>/src/"
  54. ],
  55. "transform": {
  56. "\\.tsx?$": "ts-jest"
  57. },
  58. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
  59. "moduleFileExtensions": [
  60. "ts",
  61. "tsx",
  62. "js",
  63. "jsx",
  64. "json",
  65. "node"
  66. ]
  67. },
  68. "publishConfig": {
  69. "access": "public"
  70. },
  71. "devDependencies": {
  72. "@size-limit/preset-small-lib": "^2.2.1",
  73. "@types/jest": "^24.0.23",
  74. "@types/node": "^12.12.14",
  75. "jest": "^24.9.0",
  76. "rimraf": "^3.0.0",
  77. "ts-jest": "^24.2.0",
  78. "tslint": "^5.20.1",
  79. "tslint-config-prettier": "^1.18.0",
  80. "tslint-config-standard": "^9.0.0",
  81. "typescript": "^4.1.2"
  82. },
  83. "dependencies": {
  84. "tslib": "^2.0.3"
  85. },
  86. "gitHead": "76a21a7f6f2a226521ef6abd345ff309cbd01fb0"
  87. }