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

38 lines
772 B

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. {
  2. "name": "sdk-base",
  3. "version": "2.0.1",
  4. "description": "a base class for sdk with default error handler",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha -R spec -t 5000 -r should test/*.test.js",
  8. "test-cov": "istanbul cover _mocha -- -t 5000 -r should test/*.test.js"
  9. },
  10. "keywords": [
  11. "sdk",
  12. "error"
  13. ],
  14. "files": [
  15. "index.js"
  16. ],
  17. "author": {
  18. "name": "dead_horse",
  19. "email": "dead_horse@qq.com",
  20. "url": "http://deadhorse.me"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git@github.com:node-modules/sdk-base"
  25. },
  26. "license": "MIT",
  27. "dependencies": {
  28. "get-ready": "~1.0.0"
  29. },
  30. "devDependencies": {
  31. "istanbul": "*",
  32. "mocha": "*",
  33. "should": "7"
  34. },
  35. "engine": {
  36. "node": ">=0.10"
  37. }
  38. }