package.json 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "concat",
  3. "version": "1.0.3",
  4. "description": "concatenate multiple files",
  5. "main": "index.js",
  6. "scripts": {
  7. "bin": "tsc -t ES6 --moduleResolution node ./bin/concat.ts --outFile ./bin/concat",
  8. "build": "tsc -t ES6 --module commonjs --moduleResolution node index.ts && npm run bin",
  9. "test": "npm run build && _mocha"
  10. },
  11. "bin": "./bin/concat",
  12. "engines": {
  13. "node": ">=6"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/gko/concat"
  18. },
  19. "keywords": [
  20. "concatenate",
  21. "files",
  22. "concat",
  23. "join"
  24. ],
  25. "author": "Konstantin Gorodinskiy <mail@konstantin.io>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/gko/concat/issues"
  29. },
  30. "homepage": "https://github.com/gko/concat#readme",
  31. "devDependencies": {
  32. "@types/core-js": "^0.9.41",
  33. "@types/node": "^7.0.0",
  34. "core-js": "^2.4.1",
  35. "mocha": "^3.2.0",
  36. "typescript": "^2.1.5"
  37. },
  38. "dependencies": {
  39. "commander": "^2.9.0"
  40. }
  41. }