-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.04 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.04 KB
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
{
"name": "eval-estree-expression",
"description": "Safely evaluate JavaScript (estree) expressions, sync and async.",
"version": "4.0.0-beta-1",
"license": "MIT",
"homepage": "https://github.com/jonschlinkert/eval-estree-expression",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/eval-estree-expression",
"bugs": {
"url": "https://github.com/jonschlinkert/eval-estree-expression/issues"
},
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "mocha --recursive --ignore 'test/fixtures/**/*.test.js'",
"test:ci": "nyc --reporter=lcov npm run test",
"cover": "nyc --reporter=text --reporter=html npm run test"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/eslint-plugin": "^7.25.9",
"@babel/generator": "^7.28.0",
"@babel/parser": "^7.26.7",
"escodegen": "^2.1.0",
"eslint": "8.57.1",
"get-value": "^4.0.1",
"gulp-format-md": "^2.0.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"set-value": "^4.1.0"
},
"keywords": [
"@babel",
"@babel/parser",
"6to5",
"abstract",
"analysis",
"ast",
"babel",
"babel-cli",
"compiler",
"context",
"ecma",
"ecmascript",
"es6",
"estree",
"esprima",
"eval",
"evaluate",
"expr-eval",
"expression",
"function",
"invoke",
"javascript",
"js",
"math",
"operator",
"parse",
"parser",
"parsing",
"resolve",
"resolver",
"render",
"compile",
"run",
"safe",
"safe-eval",
"static",
"syntax",
"tc39",
"template",
"templates",
"transpile",
"transpiler",
"tree"
],
"verb": {
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"whence"
]
},
"reflinks": [
"acorn",
"escodegen",
"esprima"
],
"lint": {
"reflinks": true
}
}
}