package.json 495 B

1234567891011121314151617181920212223
  1. {
  2. "name": "@vendure/common",
  3. "version": "0.15.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. "rimraf": "^3.0.0",
  21. "typescript": "3.8.3"
  22. }
  23. }