package.json 489 B

1234567891011121314151617181920
  1. {
  2. "name": "is-module",
  3. "description": "check if a source string is an es6 module",
  4. "keywords": ["es6", "module", "modules"],
  5. "version": "1.0.0",
  6. "author": {
  7. "name": "Jonathan Ong",
  8. "email": "me@jongleberry.com",
  9. "url": "http://jongleberry.com",
  10. "twitter": "https://twitter.com/jongleberry"
  11. },
  12. "license": "MIT",
  13. "repository": "component/is-module",
  14. "devDependencies": {
  15. "mocha": "*"
  16. },
  17. "scripts": {
  18. "test": "mocha --reporter spec --bail"
  19. }
  20. }