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.

55 lines
1.3 KiB

  1. {
  2. "name": "postcss-modules-scope",
  3. "version": "2.2.0",
  4. "description": "A CSS Modules transform to extract export statements from local-scope classes",
  5. "main": "src/index.js",
  6. "engines": {
  7. "node": ">= 6"
  8. },
  9. "scripts": {
  10. "lint": "eslint src test",
  11. "pretest": "yarn lint",
  12. "test": "mocha",
  13. "autotest": "chokidar src test -c 'yarn test'",
  14. "precover": "yarn lint",
  15. "cover": "nyc mocha",
  16. "travis": "yarn cover",
  17. "prepublish": "yarn run test"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/css-modules/postcss-modules-scope.git"
  22. },
  23. "keywords": [
  24. "css-modules",
  25. "postcss",
  26. "plugin"
  27. ],
  28. "files": [
  29. "src"
  30. ],
  31. "author": "Glen Maddern",
  32. "license": "ISC",
  33. "bugs": {
  34. "url": "https://github.com/css-modules/postcss-modules-scope/issues"
  35. },
  36. "homepage": "https://github.com/css-modules/postcss-modules-scope",
  37. "prettier": {
  38. "semi": true,
  39. "singleQuote": true,
  40. "trailingComma": "es5"
  41. },
  42. "dependencies": {
  43. "postcss": "^7.0.6",
  44. "postcss-selector-parser": "^6.0.0"
  45. },
  46. "devDependencies": {
  47. "cssesc": "^3.0.0",
  48. "chokidar-cli": "^1.0.1",
  49. "codecov.io": "^0.1.2",
  50. "coveralls": "^3.0.2",
  51. "eslint": "^5.9.0",
  52. "mocha": "^6.0.2",
  53. "nyc": "^14.1.0"
  54. }
  55. }