package.json 593 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@vendure/common",
  3. "version": "1.9.7",
  4. "main": "index.js",
  5. "license": "MIT",
  6. "scripts": {
  7. "watch": "tsc -p ./tsconfig.build.json -w",
  8. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  9. "lint": "tslint --fix --project ./",
  10. "test": "jest --config ./jest.config.js",
  11. "ci": "yarn build"
  12. },
  13. "homepage": "https://www.vendure.io/",
  14. "funding": "https://github.com/sponsors/michaelbromley",
  15. "publishConfig": {
  16. "access": "public"
  17. },
  18. "files": [
  19. "lib/**/*"
  20. ],
  21. "devDependencies": {
  22. "rimraf": "^3.0.2",
  23. "typescript": "4.3.5"
  24. }
  25. }