package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "_from": "runjs@4.4.2",
  3. "_id": "runjs@4.4.2",
  4. "_inBundle": false,
  5. "_integrity": "sha1-Ot9bU60bEZuEazyuEzTpq3/zSSA=",
  6. "_location": "/runjs",
  7. "_phantomChildren": {
  8. "ansi-styles": "3.2.1",
  9. "escape-string-regexp": "1.0.5"
  10. },
  11. "_requested": {
  12. "type": "version",
  13. "registry": true,
  14. "raw": "runjs@4.4.2",
  15. "name": "runjs",
  16. "escapedName": "runjs",
  17. "rawSpec": "4.4.2",
  18. "saveSpec": null,
  19. "fetchSpec": "4.4.2"
  20. },
  21. "_requiredBy": [
  22. "#DEV:/"
  23. ],
  24. "_resolved": "https://registry.npm.taobao.org/runjs/download/runjs-4.4.2.tgz",
  25. "_shasum": "3adf5b53ad1b119b846b3cae1334e9ab7ff34920",
  26. "_spec": "runjs@4.4.2",
  27. "_where": "D:\\bomanss\\ruoyi-ui",
  28. "author": {
  29. "name": "Pawel Galazka"
  30. },
  31. "bin": {
  32. "run": "bin/run.js"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/pawelgalazka/runjs/issues"
  36. },
  37. "bundleDependencies": false,
  38. "dependencies": {
  39. "chalk": "2.3.0",
  40. "lodash.padend": "4.6.1",
  41. "microcli": "1.3.3",
  42. "omelette": "0.4.5"
  43. },
  44. "deprecated": "This project has been renamed to 'tasksfile'. Install using 'npm install tasksfile' instead.",
  45. "description": "Minimalistic building tool",
  46. "devDependencies": {
  47. "@types/jest": "23.3.12",
  48. "@types/lodash.padend": "4.6.4",
  49. "@types/node": "10.12.18",
  50. "husky": "1.3.1",
  51. "jest": "23.6.0",
  52. "lint-staged": "8.1.0",
  53. "prettier": "1.15.3",
  54. "ts-jest": "23.10.5",
  55. "tslint": "5.12.1",
  56. "tslint-config-prettier": "1.17.0",
  57. "tslint-plugin-prettier": "2.0.1",
  58. "typescript": "3.2.2"
  59. },
  60. "engines": {
  61. "node": ">=6.11.1"
  62. },
  63. "homepage": "https://github.com/pawelgalazka/runjs#readme",
  64. "keywords": [
  65. "build",
  66. "system",
  67. "make",
  68. "tool"
  69. ],
  70. "license": "MIT",
  71. "lint-staged": {
  72. "src/*.{ts,tsx}": [
  73. "tslint --fix",
  74. "git add"
  75. ]
  76. },
  77. "main": "lib/index.js",
  78. "name": "runjs",
  79. "repository": {
  80. "type": "git",
  81. "url": "git+https://github.com/pawelgalazka/runjs.git"
  82. },
  83. "scripts": {
  84. "build": "tsc",
  85. "clean": "rm -rf node_modules && yarn sandbox:clean",
  86. "lint": "tslint -c tslint.json 'src/*.ts'",
  87. "sandbox:clean": "rm -rf ./test/e2e/sandbox/node_modules && mkdir -p ./test/e2e/sandbox/node_modules/.bin",
  88. "sandbox:dev": "yarn sandbox:clean && ln -s ../../../../ ./test/e2e/sandbox/node_modules/runjs",
  89. "sandbox:prod": "yarn sandbox:clean && (cd ./test/e2e/sandbox && yarn add runjs)",
  90. "test": "yarn lint && yarn build && yarn sandbox:dev && jest ./test --coverage",
  91. "test:e2e": "jest ./test/e2e/",
  92. "test:prod": "yarn sandbox:prod && jest ./test/e2e/",
  93. "test:unit": "jest ./test/unit/"
  94. },
  95. "types": "lib/index.d.ts",
  96. "version": "4.4.2"
  97. }