package.json 1002 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "babel-walk",
  3. "version": "3.0.0-canary-5",
  4. "description": "Lightweight Babel AST traversal",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "tsc && node lib",
  11. "postbuild": "rimraf lib/**/__tests__",
  12. "lint": "tslint './src/**/*.{ts,tsx}' -t verbose -p .",
  13. "prettier:write": "prettier --ignore-path .gitignore --write './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
  14. "prettier:check": "prettier --ignore-path .gitignore --list-different './**/*.{md,json,yaml,js,jsx,ts,tsx}'"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/pugjs/babel-walk.git"
  19. },
  20. "engines": {
  21. "node": ">= 10.0.0"
  22. },
  23. "author": "Timothy Gu <timothygu99@gmail.com>",
  24. "license": "MIT",
  25. "dependencies": {
  26. "@babel/types": "^7.9.6"
  27. },
  28. "devDependencies": {
  29. "@forbeslindesay/tsconfig": "^2.0.0",
  30. "@types/node": "^14.0.5",
  31. "prettier": "^2.0.5",
  32. "rimraf": "^3.0.2",
  33. "tslint": "^6.1.2",
  34. "typescript": "^3.9.3"
  35. }
  36. }