用工小程序前端代码
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.

67 lines
1.7 KiB

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. {
  2. "name": "utility",
  3. "version": "1.18.0",
  4. "description": "A collection of useful utilities.",
  5. "main": "utility.js",
  6. "files": [
  7. "*.js",
  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. "test-optimized": "node --allow-natives-syntax --trace_opt --trace_deopt test/optimized.js",
  19. "contributor": "git-contributor"
  20. },
  21. "dependencies": {
  22. "copy-to": "^2.0.1",
  23. "escape-html": "^1.0.3",
  24. "mkdirp": "^0.5.1",
  25. "mz": "^2.7.0",
  26. "unescape": "^1.0.1"
  27. },
  28. "devDependencies": {
  29. "@types/escape-html": "0.0.20",
  30. "@types/node": "^10.12.12",
  31. "ava": "^0.25.0",
  32. "ava-ts": "^0.25.2",
  33. "beautify-benchmark": "*",
  34. "benchmark": "^2.1.0",
  35. "contributors": "*",
  36. "git-contributor": "^1.0.10",
  37. "jshint": "*",
  38. "moment": "^2.22.2",
  39. "nyc": "6",
  40. "object-assign": "^4.1.1",
  41. "optimized": "^1.2.0",
  42. "rimraf": "^2.6.2",
  43. "time-require": "^0.1.2",
  44. "ts-node": "^7.0.1",
  45. "typescript": "^5.0.4"
  46. },
  47. "homepage": "https://github.com/node-modules/utility",
  48. "repository": {
  49. "type": "git",
  50. "url": "git://github.com/node-modules/utility.git",
  51. "web": "https://github.com/node-modules/utility"
  52. },
  53. "keywords": [
  54. "utility",
  55. "util",
  56. "utils",
  57. "sha256",
  58. "sha1",
  59. "hash",
  60. "hex"
  61. ],
  62. "engines": {
  63. "node": ">= 0.12.0"
  64. },
  65. "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
  66. "license": "MIT"
  67. }