package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "concat-with-sourcemaps",
  3. "version": "1.1.0",
  4. "description": "Concatenate file contents with a custom separator and generate a source map",
  5. "homepage": "http://github.com/floridoo/concat-with-sourcemaps",
  6. "repository": "git://github.com/floridoo/concat-with-sourcemaps.git",
  7. "main": "index.js",
  8. "types": "index.d.ts",
  9. "scripts": {
  10. "test": "jshint *.js test/*.js && faucet test/*.js",
  11. "tap": "tape test/*.js",
  12. "cover": "istanbul cover --dir reports/coverage tape test/*.js",
  13. "coveralls": "istanbul cover tape test/*.js --report lcovonly && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
  14. },
  15. "keywords": [
  16. "concat",
  17. "source map"
  18. ],
  19. "author": "Florian Reiterer <me@florianreiterer.com>",
  20. "license": "ISC",
  21. "dependencies": {
  22. "source-map": "^0.6.1"
  23. },
  24. "devDependencies": {
  25. "coveralls": "^3.0.0",
  26. "faucet": "0.0.1",
  27. "istanbul": "^0.4.5",
  28. "jshint": "^2.9.5",
  29. "tape": "^4.9.0"
  30. },
  31. "files": [
  32. "index.js",
  33. "index.d.ts",
  34. "package.json",
  35. "README.md",
  36. "LICENSE.md"
  37. ]
  38. }