package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "csstype",
  3. "version": "2.6.21",
  4. "main": "",
  5. "types": "index.d.ts",
  6. "description": "Strict TypeScript and Flow types for style based on MDN data",
  7. "repository": "https://github.com/frenic/csstype",
  8. "author": "Fredrik Nicol <fredrik.nicol@gmail.com>",
  9. "license": "MIT",
  10. "devDependencies": {
  11. "@types/chokidar": "^2.1.3",
  12. "@types/jest": "^24.0.21",
  13. "@types/jsdom": "^12.2.4",
  14. "@types/node": "^12.12.3",
  15. "@types/prettier": "^1.18.3",
  16. "chalk": "^2.4.2",
  17. "chokidar": "^3.2.3",
  18. "fast-glob": "^3.1.0",
  19. "flow-bin": "^0.110.1",
  20. "jest": "^24.9.0",
  21. "jsdom": "^15.2.0",
  22. "mdn-browser-compat-data": "git+https://github.com/mdn/browser-compat-data.git#1e8eedcf98a3c282cc745d274050091fa7602490",
  23. "mdn-data": "git+https://github.com/mdn/data.git#fea9f55167435f34fb39912151e1cc4288e7afb7",
  24. "prettier": "^1.18.2",
  25. "sync-request": "^6.1.0",
  26. "ts-node": "^8.4.1",
  27. "tslint": "^5.20.0",
  28. "tslint-config-prettier": "^1.18.0",
  29. "turndown": "^5.0.3",
  30. "typescript": "~3.6.4"
  31. },
  32. "scripts": {
  33. "update": "ts-node --files update.ts",
  34. "build": "ts-node --files build.ts --start",
  35. "watch": "ts-node --files build.ts --watch",
  36. "lint": "tslint --exclude node_modules/**/* --exclude **/*.d.ts --fix **/*.ts",
  37. "pretty": "prettier --write build.ts **/*.{ts,js,json,md}",
  38. "lazy": "tsc && npm run lint && npm run pretty",
  39. "test": "jest --no-cache",
  40. "typecheck": "tsc typecheck.ts --noEmit --pretty & flow check typecheck.js",
  41. "prepublish": "tsc && npm run test && npm run build && npm run typecheck"
  42. },
  43. "files": [
  44. "index.d.ts",
  45. "index.js.flow"
  46. ],
  47. "keywords": [
  48. "css",
  49. "style",
  50. "typescript",
  51. "flow",
  52. "typings",
  53. "types",
  54. "definitions"
  55. ]
  56. }