package.json 502 B

1234567891011121314151617181920212223
  1. {
  2. "name": "@vendure/common",
  3. "version": "0.5.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. },
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "files": [
  16. "lib/**/*"
  17. ],
  18. "devDependencies": {
  19. "@types/jest": "^24.0.21",
  20. "rimraf": "^3.0.0",
  21. "typescript": "~3.5.3"
  22. }
  23. }