package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "runscript",
  3. "version": "1.5.3",
  4. "description": "Run script easy!",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "index.d.ts"
  9. ],
  10. "scripts": {
  11. "contributor": "git-contributor",
  12. "test": "npm run lint && egg-bin test",
  13. "test-cov": "egg-bin cov",
  14. "lint": "eslint index.js test --fix",
  15. "ci": "npm run lint && npm run test-cov",
  16. "autod": "autod -w --prefix '^'"
  17. },
  18. "dependencies": {
  19. "debug": "^2.6.8",
  20. "is-type-of": "^1.1.0"
  21. },
  22. "devDependencies": {
  23. "@types/node": "^12.0.8",
  24. "autod": "^3.1.0",
  25. "egg-bin": "^1.11.1",
  26. "egg-ci": "^1.8.0",
  27. "eslint": "^4.19.1",
  28. "eslint-config-egg": "^6.0.0",
  29. "git-contributor": "^1.0.10",
  30. "typescript": "^3.9.3"
  31. },
  32. "homepage": "https://github.com/node-modules/runscript",
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/node-modules/runscript.git",
  36. "web": "https://github.com/node-modules/runscript"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/node-modules/runscript/issues"
  40. },
  41. "keywords": [
  42. "runscript",
  43. "run-script",
  44. "npm run"
  45. ],
  46. "engines": {
  47. "node": ">=4.2.3"
  48. },
  49. "ci": {
  50. "version": "8, 10, 12, 14, 16",
  51. "type": "github",
  52. "npminstall": false
  53. },
  54. "author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
  55. "license": "MIT"
  56. }