package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "postcss-value-parser",
  3. "version": "4.2.0",
  4. "description": "Transforms css values and at-rule params into the tree",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "devDependencies": {
  10. "eslint": "^5.16.0",
  11. "husky": "^2.3.0",
  12. "lint-staged": "^8.1.7",
  13. "prettier": "^1.17.1",
  14. "tap-spec": "^5.0.0",
  15. "tape": "^4.10.2"
  16. },
  17. "scripts": {
  18. "lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --list-different",
  19. "lint:js": "eslint . --cache",
  20. "lint": "yarn lint:js && yarn lint:prettier",
  21. "pretest": "yarn lint",
  22. "test": "tape test/*.js | tap-spec"
  23. },
  24. "eslintConfig": {
  25. "env": {
  26. "es6": true,
  27. "node": true
  28. },
  29. "extends": "eslint:recommended"
  30. },
  31. "lint-staged": {
  32. "*.js": [
  33. "eslint",
  34. "prettier --write",
  35. "git add"
  36. ]
  37. },
  38. "husky": {
  39. "hooks": {
  40. "pre-commit": "lint-staged"
  41. }
  42. },
  43. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  44. "license": "MIT",
  45. "homepage": "https://github.com/TrySound/postcss-value-parser",
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/TrySound/postcss-value-parser.git"
  49. },
  50. "keywords": [
  51. "postcss",
  52. "value",
  53. "parser"
  54. ],
  55. "bugs": {
  56. "url": "https://github.com/TrySound/postcss-value-parser/issues"
  57. }
  58. }