package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "with",
  3. "version": "7.0.2",
  4. "description": "Compile time `with` for strict mode JavaScript",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "build": "tsc",
  8. "postbuild": "rimraf lib/**/__tests__",
  9. "lint": "tslint './src/**/*.{ts,tsx}' -t verbose -p .",
  10. "prettier:write": "prettier --ignore-path .gitignore --write './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
  11. "prettier:check": "prettier --ignore-path .gitignore --list-different './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
  12. "pretest": "yarn build",
  13. "test": "mocha test/index.js -R spec"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/pugjs/with.git"
  18. },
  19. "author": "ForbesLindesay",
  20. "license": "MIT",
  21. "dependencies": {
  22. "@babel/parser": "^7.9.6",
  23. "@babel/types": "^7.9.6",
  24. "assert-never": "^1.2.1",
  25. "babel-walk": "3.0.0-canary-5"
  26. },
  27. "devDependencies": {
  28. "@forbeslindesay/tsconfig": "^2.0.0",
  29. "@types/node": "^14.0.5",
  30. "mocha": "*",
  31. "prettier": "^2.0.5",
  32. "rimraf": "^3.0.2",
  33. "tslint": "^6.1.2",
  34. "typescript": "^3.9.3",
  35. "uglify-js": "^2.6.2"
  36. },
  37. "engines": {
  38. "node": ">= 10.0.0"
  39. }
  40. }