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
| {
| "_args": [
| [
| "ast-types@0.16.1",
| "C:\\Users\\hp\\Desktop\\gitzhongyi"
| ]
| ],
| "_development": true,
| "_from": "ast-types@0.16.1",
| "_id": "ast-types@0.16.1",
| "_inBundle": false,
| "_integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
| "_location": "/ast-types",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "ast-types@0.16.1",
| "name": "ast-types",
| "escapedName": "ast-types",
| "rawSpec": "0.16.1",
| "saveSpec": null,
| "fetchSpec": "0.16.1"
| },
| "_requiredBy": [
| "/recast"
| ],
| "_resolved": "https://registry.npmmirror.com/ast-types/-/ast-types-0.16.1.tgz",
| "_spec": "0.16.1",
| "_where": "C:\\Users\\hp\\Desktop\\gitzhongyi",
| "author": {
| "name": "Ben Newman",
| "email": "bn@cs.stanford.edu"
| },
| "bugs": {
| "url": "https://github.com/benjamn/ast-types/issues"
| },
| "dependencies": {
| "tslib": "^2.0.1"
| },
| "description": "Esprima-compatible implementation of the Mozilla JS Parser API",
| "devDependencies": {
| "@babel/parser": "7.20.5",
| "@babel/types": "7.20.5",
| "@types/esprima": "4.0.3",
| "@types/glob": "8.0.0",
| "@types/mocha": "9.0.0",
| "espree": "9.4.1",
| "esprima": "4.0.1",
| "esprima-fb": "15001.1001.0-dev-harmony-fb",
| "flow-parser": "0.195.2",
| "glob": "8.0.3",
| "mocha": "^9.1.3",
| "recast": "^0.23.0",
| "reify": "0.20.12",
| "rimraf": "3.0.2",
| "ts-node": "10.9.1",
| "typescript": "4.9.4"
| },
| "engines": {
| "node": ">=4"
| },
| "exports": {
| ".": "./lib/main.js",
| "./lib/*": "./lib/*.js",
| "./lib/*.js": "./lib/*.js",
| "./*": "./lib/*.js",
| "./*.js": "./lib/*.js"
| },
| "homepage": "http://github.com/benjamn/ast-types",
| "keywords": [
| "ast",
| "abstract syntax tree",
| "hierarchy",
| "mozilla",
| "spidermonkey",
| "parser api",
| "esprima",
| "types",
| "type system",
| "type checking",
| "dynamic types",
| "parsing",
| "transformation",
| "syntax"
| ],
| "license": "MIT",
| "main": "lib/main.js",
| "name": "ast-types",
| "repository": {
| "type": "git",
| "url": "git://github.com/benjamn/ast-types.git"
| },
| "scripts": {
| "build": "tsc",
| "clean": "rimraf lib/",
| "gen": "ts-node --transpile-only script/gen-types.ts",
| "prepare": "npm run clean && npm run build",
| "test": "npm run gen && npm run build && script/run-tests.sh"
| },
| "types": "lib/main.d.ts",
| "version": "0.16.1"
| }
|
|