package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "vendors",
  3. "version": "1.0.4",
  4. "description": "List of vendor prefixes known to the web platform",
  5. "license": "MIT",
  6. "keywords": [
  7. "css",
  8. "html",
  9. "dom",
  10. "web",
  11. "platform",
  12. "vendor",
  13. "prefix",
  14. "prefixes"
  15. ],
  16. "repository": "wooorm/vendors",
  17. "bugs": "https://github.com/wooorm/vendors/issues",
  18. "funding": {
  19. "type": "github",
  20. "url": "https://github.com/sponsors/wooorm"
  21. },
  22. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  23. "contributors": [
  24. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  25. ],
  26. "main": "index.json",
  27. "files": [
  28. "index.json"
  29. ],
  30. "dependencies": {},
  31. "devDependencies": {
  32. "browserify": "^16.0.0",
  33. "prettier": "^1.0.0",
  34. "remark-cli": "^7.0.0",
  35. "remark-preset-wooorm": "^6.0.0",
  36. "tape": "^4.0.0",
  37. "tinyify": "^2.0.0",
  38. "xo": "^0.25.0"
  39. },
  40. "scripts": {
  41. "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
  42. "build-bundle": "browserify index.json -s vendors -o vendors.js",
  43. "build-mangle": "browserify index.json -s vendors -p tinyify -o vendors.min.js",
  44. "build": "npm run build-bundle && npm run build-mangle",
  45. "test-api": "node test",
  46. "test": "npm run format && npm run build && npm run test-api"
  47. },
  48. "prettier": {
  49. "tabWidth": 2,
  50. "useTabs": false,
  51. "singleQuote": true,
  52. "bracketSpacing": false,
  53. "semi": false,
  54. "trailingComma": "none"
  55. },
  56. "xo": {
  57. "prettier": true,
  58. "esnext": false,
  59. "ignores": [
  60. "vendors.js"
  61. ]
  62. },
  63. "remarkConfig": {
  64. "plugins": [
  65. "preset-wooorm"
  66. ]
  67. }
  68. }