web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

  1. {
  2. "name": "postcss-modules-extract-imports",
  3. "version": "2.0.0",
  4. "description": "A CSS Modules transform to extract local aliases for inline imports",
  5. "main": "src/index.js",
  6. "engines": {
  7. "node": ">= 6"
  8. },
  9. "files": [
  10. "src"
  11. ],
  12. "scripts": {
  13. "test": "jest --coverage",
  14. "precommit": "lint-staged",
  15. "prepublish": "yarn run test"
  16. },
  17. "lint-staged": {
  18. "*.js": [
  19. "prettier --single-quote --no-semi --write",
  20. "git add"
  21. ]
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/css-modules/postcss-modules-extract-imports.git"
  26. },
  27. "keywords": [
  28. "css-modules",
  29. "postcss",
  30. "plugin"
  31. ],
  32. "author": "Glen Maddern",
  33. "license": "ISC",
  34. "bugs": {
  35. "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues"
  36. },
  37. "homepage": "https://github.com/css-modules/postcss-modules-extract-imports",
  38. "dependencies": {
  39. "postcss": "^7.0.5"
  40. },
  41. "devDependencies": {
  42. "codecov.io": "^0.1.2",
  43. "coveralls": "^2.11.2",
  44. "husky": "^0.13.3",
  45. "jest": "^20.0.3",
  46. "lint-staged": "^3.4.2",
  47. "prettier": "^1.3.1"
  48. }
  49. }