执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
  "_from": "css-tree@1.0.0-alpha.29",
  "_id": "css-tree@1.0.0-alpha.29",
  "_inBundle": false,
  "_integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==",
  "_location": "/csso/css-tree",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "css-tree@1.0.0-alpha.29",
    "name": "css-tree",
    "escapedName": "css-tree",
    "rawSpec": "1.0.0-alpha.29",
    "saveSpec": null,
    "fetchSpec": "1.0.0-alpha.29"
  },
  "_requiredBy": [
    "/csso"
  ],
  "_resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz",
  "_shasum": "3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39",
  "_spec": "css-tree@1.0.0-alpha.29",
  "_where": "D:\\源码\\vue-element-admin-master\\node_modules\\csso",
  "author": {
    "name": "Roman Dvornov",
    "email": "rdvornov@gmail.com",
    "url": "https://github.com/lahmatiy"
  },
  "browser": {
    "./data": "./dist/default-syntax.json"
  },
  "bugs": {
    "url": "https://github.com/csstree/csstree/issues"
  },
  "bundleDependencies": false,
  "dependencies": {
    "mdn-data": "~1.1.0",
    "source-map": "^0.5.3"
  },
  "deprecated": false,
  "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",
  "devDependencies": {
    "browserify": "^13.0.0",
    "coveralls": "^2.11.6",
    "eslint": "^2.13.1",
    "istanbul": "^0.4.2",
    "jscs": "~3.0.7",
    "json-to-ast": "~2.0.1",
    "mocha": "^3.0.2",
    "uglify-js": "^2.6.1"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "eslintConfig": {
    "env": {
      "node": true,
      "mocha": true,
      "es6": true
    },
    "rules": {
      "no-duplicate-case": 2,
      "no-undef": 2,
      "no-unused-vars": [
        2,
        {
          "vars": "all",
          "args": "after-used"
        }
      ]
    }
  },
  "files": [
    "bin",
    "data",
    "dist/csstree.js",
    "dist/default-syntax.json",
    "docs",
    "lib",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "homepage": "https://github.com/csstree/csstree",
  "keywords": [
    "css",
    "ast",
    "tokenizer",
    "parser",
    "walker",
    "lexer",
    "generator",
    "utils",
    "syntax",
    "validation"
  ],
  "license": "MIT",
  "main": "./lib/index",
  "maintainers": [
    {
      "name": "Roman Dvornov",
      "email": "rdvornov@gmail.com"
    }
  ],
  "name": "css-tree",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/csstree/csstree.git"
  },
  "scripts": {
    "build": "npm run gen:syntax && browserify --standalone csstree lib/index.js | uglifyjs --compress --mangle -o dist/csstree.js",
    "coverage": "istanbul cover _mocha -- -R min",
    "coveralls": "istanbul cover _mocha --report lcovonly -- -R min && cat ./coverage/lcov.info | coveralls",
    "gen:syntax": "node scripts/gen-syntax-data",
    "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",
    "lint": "jscs data lib scripts test && eslint data lib scripts test && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint",
    "lint-and-test": "npm run lint && npm test",
    "prepublish": "npm run build",
    "review:syntax-patch": "node scripts/review-syntax-patch",
    "test": "mocha --reporter progress",
    "travis": "npm run lint-and-test && npm run coveralls",
    "update:docs": "node scripts/update-docs"
  },
  "version": "1.0.0-alpha.29"
}