package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "_from": "postcss-value-parser@^4.1.0",
  3. "_id": "postcss-value-parser@4.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
  6. "_location": "/postcss-value-parser",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "postcss-value-parser@^4.1.0",
  12. "name": "postcss-value-parser",
  13. "escapedName": "postcss-value-parser",
  14. "rawSpec": "^4.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^4.1.0"
  17. },
  18. "_requiredBy": [
  19. "/autoprefixer",
  20. "/css-loader",
  21. "/postcss-calc",
  22. "/postcss-modules-local-by-default"
  23. ],
  24. "_resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
  25. "_shasum": "443f6a20ced6481a2bda4fa8532a6e55d789a2cb",
  26. "_spec": "postcss-value-parser@^4.1.0",
  27. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\css-loader",
  28. "author": {
  29. "name": "Bogdan Chadkin",
  30. "email": "trysound@yandex.ru"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/TrySound/postcss-value-parser/issues"
  34. },
  35. "bundleDependencies": false,
  36. "deprecated": false,
  37. "description": "Transforms css values and at-rule params into the tree",
  38. "devDependencies": {
  39. "eslint": "^5.16.0",
  40. "husky": "^2.3.0",
  41. "lint-staged": "^8.1.7",
  42. "prettier": "^1.17.1",
  43. "tap-spec": "^5.0.0",
  44. "tape": "^4.10.2"
  45. },
  46. "eslintConfig": {
  47. "env": {
  48. "es6": true,
  49. "node": true
  50. },
  51. "extends": "eslint:recommended"
  52. },
  53. "files": [
  54. "lib"
  55. ],
  56. "homepage": "https://github.com/TrySound/postcss-value-parser",
  57. "husky": {
  58. "hooks": {
  59. "pre-commit": "lint-staged"
  60. }
  61. },
  62. "keywords": [
  63. "postcss",
  64. "value",
  65. "parser"
  66. ],
  67. "license": "MIT",
  68. "lint-staged": {
  69. "*.js": [
  70. "eslint",
  71. "prettier --write",
  72. "git add"
  73. ]
  74. },
  75. "main": "lib/index.js",
  76. "name": "postcss-value-parser",
  77. "repository": {
  78. "type": "git",
  79. "url": "git+https://github.com/TrySound/postcss-value-parser.git"
  80. },
  81. "scripts": {
  82. "lint": "yarn lint:js && yarn lint:prettier",
  83. "lint:js": "eslint . --cache",
  84. "lint:prettier": "prettier '**/*.js' '**/*.ts' --list-different",
  85. "pretest": "yarn lint",
  86. "test": "tape test/*.js | tap-spec"
  87. },
  88. "version": "4.1.0"
  89. }