package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "runjs",
  3. "version": "4.4.2",
  4. "description": "Minimalistic building tool",
  5. "keywords": [
  6. "build",
  7. "system",
  8. "make",
  9. "tool"
  10. ],
  11. "main": "lib/index.js",
  12. "types": "lib/index.d.ts",
  13. "bin": {
  14. "run": "bin/run.js"
  15. },
  16. "scripts": {
  17. "lint": "tslint -c tslint.json 'src/*.ts'",
  18. "build": "tsc",
  19. "test": "yarn lint && yarn build && yarn sandbox:dev && jest ./test --coverage",
  20. "test:unit": "jest ./test/unit/",
  21. "test:e2e": "jest ./test/e2e/",
  22. "test:prod": "yarn sandbox:prod && jest ./test/e2e/",
  23. "sandbox:clean": "rm -rf ./test/e2e/sandbox/node_modules && mkdir -p ./test/e2e/sandbox/node_modules/.bin",
  24. "sandbox:dev": "yarn sandbox:clean && ln -s ../../../../ ./test/e2e/sandbox/node_modules/runjs",
  25. "sandbox:prod": "yarn sandbox:clean && (cd ./test/e2e/sandbox && yarn add runjs)",
  26. "clean": "rm -rf node_modules && yarn sandbox:clean"
  27. },
  28. "lint-staged": {
  29. "src/*.{ts,tsx}": [
  30. "tslint --fix",
  31. "git add"
  32. ]
  33. },
  34. "engines": {
  35. "node": ">=6.11.1"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/pawelgalazka/runjs.git"
  40. },
  41. "author": "Pawel Galazka",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/pawelgalazka/runjs/issues"
  45. },
  46. "homepage": "https://github.com/pawelgalazka/runjs#readme",
  47. "dependencies": {
  48. "chalk": "2.3.0",
  49. "lodash.padend": "4.6.1",
  50. "microcli": "1.3.3",
  51. "omelette": "0.4.5"
  52. },
  53. "devDependencies": {
  54. "@types/jest": "23.3.12",
  55. "@types/lodash.padend": "4.6.4",
  56. "@types/node": "10.12.18",
  57. "husky": "1.3.1",
  58. "jest": "23.6.0",
  59. "lint-staged": "8.1.0",
  60. "prettier": "1.15.3",
  61. "ts-jest": "23.10.5",
  62. "tslint": "5.12.1",
  63. "tslint-config-prettier": "1.17.0",
  64. "tslint-plugin-prettier": "2.0.1",
  65. "typescript": "3.2.2"
  66. }
  67. }