Changeset 79a0317 for imaps-frontend/node_modules/css-tree
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/css-tree/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "css-tree", 3 "version": "1.1.3", 4 "description": "A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations", 5 "author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)", 6 "license": "MIT", 7 "repository": "csstree/csstree", 8 "keywords": [ 9 "css", 10 "ast", 11 "tokenizer", 12 "parser", 13 "walker", 14 "lexer", 15 "generator", 16 "utils", 17 "syntax", 18 "validation" 2 "_from": "css-tree@^1.1.2", 3 "_id": "css-tree@1.1.3", 4 "_inBundle": false, 5 "_integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", 6 "_location": "/css-tree", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "css-tree@^1.1.2", 12 "name": "css-tree", 13 "escapedName": "css-tree", 14 "rawSpec": "^1.1.2", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.2" 17 }, 18 "_requiredBy": [ 19 "/nano-css" 19 20 ], 20 "main": "lib/index.js", 21 "unpkg": "dist/csstree.min.js", 22 "jsdelivr": "dist/csstree.min.js", 23 "scripts": { 24 "build": "rollup --config", 25 "lint": "eslint data lib scripts test && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint", 26 "lint-and-test": "npm run lint && npm test", 27 "update:docs": "node scripts/update-docs", 28 "review:syntax-patch": "node scripts/review-syntax-patch", 29 "test": "mocha --reporter progress", 30 "coverage": "nyc npm test", 31 "travis": "nyc npm run lint-and-test && npm run coveralls", 32 "coveralls": "nyc report --reporter=text-lcov | coveralls", 33 "prepublishOnly": "npm run build", 34 "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" 21 "_resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", 22 "_shasum": "eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d", 23 "_spec": "css-tree@^1.1.2", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/nano-css", 25 "author": { 26 "name": "Roman Dvornov", 27 "email": "rdvornov@gmail.com", 28 "url": "https://github.com/lahmatiy" 35 29 }, 30 "bugs": { 31 "url": "https://github.com/csstree/csstree/issues" 32 }, 33 "bundleDependencies": false, 36 34 "dependencies": { 37 35 "mdn-data": "2.0.14", 38 36 "source-map": "^0.6.1" 39 37 }, 38 "deprecated": false, 39 "description": "A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations", 40 40 "devDependencies": { 41 41 "@rollup/plugin-commonjs": "^11.0.2", … … 57 57 "dist", 58 58 "lib" 59 ] 59 ], 60 "homepage": "https://github.com/csstree/csstree#readme", 61 "jsdelivr": "dist/csstree.min.js", 62 "keywords": [ 63 "css", 64 "ast", 65 "tokenizer", 66 "parser", 67 "walker", 68 "lexer", 69 "generator", 70 "utils", 71 "syntax", 72 "validation" 73 ], 74 "license": "MIT", 75 "main": "lib/index.js", 76 "name": "css-tree", 77 "repository": { 78 "type": "git", 79 "url": "git+https://github.com/csstree/csstree.git" 80 }, 81 "scripts": { 82 "build": "rollup --config", 83 "coverage": "nyc npm test", 84 "coveralls": "nyc report --reporter=text-lcov | coveralls", 85 "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", 86 "lint": "eslint data lib scripts test && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint", 87 "lint-and-test": "npm run lint && npm test", 88 "prepublishOnly": "npm run build", 89 "review:syntax-patch": "node scripts/review-syntax-patch", 90 "test": "mocha --reporter progress", 91 "travis": "nyc npm run lint-and-test && npm run coveralls", 92 "update:docs": "node scripts/update-docs" 93 }, 94 "unpkg": "dist/csstree.min.js", 95 "version": "1.1.3" 60 96 }
Note:
See TracChangeset
for help on using the changeset viewer.