package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "_args": [
  3. [
  4. "css-tree@1.0.0-alpha.37",
  5. "E:\\amr1.0\\AMR"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "css-tree@1.0.0-alpha.37",
  10. "_id": "css-tree@1.0.0-alpha.37",
  11. "_inBundle": false,
  12. "_integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
  13. "_location": "/css-tree",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "css-tree@1.0.0-alpha.37",
  19. "name": "css-tree",
  20. "escapedName": "css-tree",
  21. "rawSpec": "1.0.0-alpha.37",
  22. "saveSpec": null,
  23. "fetchSpec": "1.0.0-alpha.37"
  24. },
  25. "_requiredBy": [
  26. "/cssnano-preset-default/svgo"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
  29. "_spec": "1.0.0-alpha.37",
  30. "_where": "E:\\amr1.0\\AMR",
  31. "author": {
  32. "name": "Roman Dvornov",
  33. "email": "rdvornov@gmail.com",
  34. "url": "https://github.com/lahmatiy"
  35. },
  36. "browser": {
  37. "./data": "./dist/default-syntax.json"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/csstree/csstree/issues"
  41. },
  42. "dependencies": {
  43. "mdn-data": "2.0.4",
  44. "source-map": "^0.6.1"
  45. },
  46. "description": "CSSTree is a tool set to work with CSS, including fast detailed parser (string->AST), walker (AST traversal), generator (AST->string) and lexer (validation and matching) based on knowledge of spec and browser implementations",
  47. "devDependencies": {
  48. "coveralls": "^3.0.4",
  49. "eslint": "^6.3.0",
  50. "json-to-ast": "^2.1.0",
  51. "mocha": "^5.2.0",
  52. "nyc": "^14.1.1",
  53. "rollup": "^1.22.0",
  54. "rollup-plugin-commonjs": "^10.1.0",
  55. "rollup-plugin-json": "^4.0.0",
  56. "rollup-plugin-node-resolve": "^5.2.0",
  57. "terser": "^4.3.4"
  58. },
  59. "engines": {
  60. "node": ">=8.0.0"
  61. },
  62. "files": [
  63. "data",
  64. "dist",
  65. "lib"
  66. ],
  67. "homepage": "https://github.com/csstree/csstree#readme",
  68. "keywords": [
  69. "css",
  70. "ast",
  71. "tokenizer",
  72. "parser",
  73. "walker",
  74. "lexer",
  75. "generator",
  76. "utils",
  77. "syntax",
  78. "validation"
  79. ],
  80. "license": "MIT",
  81. "main": "./lib/index",
  82. "name": "css-tree",
  83. "repository": {
  84. "type": "git",
  85. "url": "git+https://github.com/csstree/csstree.git"
  86. },
  87. "scripts": {
  88. "build": "npm run gen:syntax && rollup --config && terser dist/csstree.js --compress --mangle -o dist/csstree.min.js",
  89. "coverage": "nyc npm test",
  90. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  91. "gen:syntax": "node scripts/gen-syntax-data",
  92. "hydrogen": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --trace_hydrogen_file=code.cfg --print-opt-code bin/parse --stat -o /dev/null",
  93. "lint": "eslint data lib scripts test && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint",
  94. "lint-and-test": "npm run lint && npm test",
  95. "prepublishOnly": "npm run build",
  96. "review:syntax-patch": "node scripts/review-syntax-patch",
  97. "test": "mocha --reporter progress",
  98. "travis": "nyc npm run lint-and-test && npm run coveralls",
  99. "update:docs": "node scripts/update-docs"
  100. },
  101. "version": "1.0.0-alpha.37"
  102. }