package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "utility",
  3. "version": "1.17.0",
  4. "description": "A collection of useful utilities.",
  5. "main": "lib/utility.js",
  6. "files": [
  7. "lib",
  8. "index.d.ts"
  9. ],
  10. "scripts": {
  11. "test": "npm run lint && npm run test-local",
  12. "test-ts": "npm run test-local-ts",
  13. "test-local": "ava test/**/*.test.js",
  14. "test-local-ts": "ava-ts test_ts/**/*.test.ts",
  15. "test-cov": "nyc ava test/**/*.test.js && nyc report --reporter=lcov",
  16. "lint": "jshint .",
  17. "ci": "npm run lint && npm run test-cov && npm run test-ts",
  18. "autod": "autod -w --prefix '^' -e benchmark",
  19. "test-optimized": "node --allow-natives-syntax --trace_opt --trace_deopt test/optimized.js",
  20. "contributor": "git-contributor"
  21. },
  22. "dependencies": {
  23. "copy-to": "^2.0.1",
  24. "escape-html": "^1.0.3",
  25. "mkdirp": "^0.5.1",
  26. "mz": "^2.7.0",
  27. "unescape": "^1.0.1"
  28. },
  29. "devDependencies": {
  30. "@types/escape-html": "0.0.20",
  31. "@types/node": "^10.12.12",
  32. "autod": "*",
  33. "ava": "^0.25.0",
  34. "ava-ts": "^0.25.2",
  35. "beautify-benchmark": "*",
  36. "benchmark": "^2.1.0",
  37. "contributors": "*",
  38. "git-contributor": "^1.0.10",
  39. "jshint": "*",
  40. "moment": "^2.22.2",
  41. "nyc": "6",
  42. "object-assign": "^4.1.1",
  43. "optimized": "^1.2.0",
  44. "rimraf": "^2.6.2",
  45. "ts-node": "^7.0.1",
  46. "typescript": "^3.2.2"
  47. },
  48. "homepage": "https://github.com/node-modules/utility",
  49. "repository": {
  50. "type": "git",
  51. "url": "git://github.com/node-modules/utility.git",
  52. "web": "https://github.com/node-modules/utility"
  53. },
  54. "keywords": [
  55. "utility",
  56. "util",
  57. "utils",
  58. "sha256",
  59. "sha1",
  60. "hash",
  61. "hex"
  62. ],
  63. "engines": {
  64. "node": ">= 0.12.0"
  65. },
  66. "author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
  67. "license": "MIT"
  68. }