package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "espurify",
  3. "description": "Clone new AST without extra properties",
  4. "version": "1.8.1",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": "https://github.com/estools/espurify/issues",
  11. "dependencies": {
  12. "core-js": "^2.0.0"
  13. },
  14. "devDependencies": {
  15. "acorn": "^5.0.0",
  16. "babel-types": "^6.3.20",
  17. "babylon": "^6.3.20",
  18. "browserify": "^13.0.0",
  19. "derequire": "^2.0.2",
  20. "dereserve": "^1.0.0",
  21. "esprima": "^4.0.0",
  22. "estraverse": "^4.1.0",
  23. "licensify": "^3.1.0",
  24. "mocha": "^5.0.0",
  25. "semistandard": "^12.0.0",
  26. "snazzy": "^7.0.0"
  27. },
  28. "files": [
  29. "CHANGELOG.md",
  30. "MIT-LICENSE.txt",
  31. "README.md",
  32. "index.js",
  33. "lib",
  34. "build/espurify.js",
  35. "package.json"
  36. ],
  37. "homepage": "https://github.com/estools/espurify",
  38. "keywords": [
  39. "ast",
  40. "estree",
  41. "ecmascript",
  42. "es6"
  43. ],
  44. "license": "MIT",
  45. "main": "index.js",
  46. "repository": {
  47. "type": "git",
  48. "url": "git://github.com/estools/espurify.git"
  49. },
  50. "scripts": {
  51. "preversion": "npm test",
  52. "version": "npm run dist && git add -A build",
  53. "dist": "browserify index.js --plugin licensify --standalone espurify | dereserve | derequire > ./build/espurify.js",
  54. "lint": "semistandard --verbose index.js lib test | snazzy",
  55. "fmt": "semistandard --fix index.js lib test",
  56. "test": "npm run lint && mocha test"
  57. },
  58. "semistandard": {
  59. "ignore": [
  60. "/build/",
  61. "/bench/",
  62. "**/*.jsx"
  63. ],
  64. "globals": [
  65. "describe",
  66. "beforeEach",
  67. "it"
  68. ]
  69. }
  70. }