package.json 526 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@vendure/common",
  3. "version": "0.7.0",
  4. "main": "index.js",
  5. "license": "MIT",
  6. "scripts": {
  7. "watch": "tsc -p ./tsconfig.build.json -w",
  8. "build": "rimraf dist && tsc -p ./tsconfig.build.json",
  9. "lint": "tslint --fix --project ./",
  10. "test": "jest --config ./jest.config.js",
  11. "ci": "yarn build"
  12. },
  13. "publishConfig": {
  14. "access": "public"
  15. },
  16. "files": [
  17. "lib/**/*"
  18. ],
  19. "devDependencies": {
  20. "@types/jest": "^24.0.21",
  21. "rimraf": "^3.0.0",
  22. "typescript": "~3.5.3"
  23. }
  24. }