-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2 KB
/
package.json
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
{
"name": "whence",
"description": "Add context awareness to your apps and frameworks by safely evaluating user-defined conditional expressions. Useful for evaluating expressions in config files, prompts, key bindings, completions, templates, and many other user cases.",
"version": "2.0.0",
"homepage": "https://github.com/jonschlinkert/whence",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/whence",
"bugs": {
"url": "https://github.com/jonschlinkert/whence/issues"
},
"engines": {
"node": ">=14"
},
"main": "index.js",
"files": [
"index.js"
],
"license": "MIT",
"scripts": {
"test": "mocha --recursive --ignore 'test/support/**'",
"test:ci": "nyc --reporter=lcov npm run test",
"cover": "nyc --reporter=text --reporter=html npm run test"
},
"dependencies": {
"@babel/parser": "^7.15.7",
"eval-estree-expression": "^1.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"@babel/eslint-plugin": "^7.14.5",
"esprima": "^4.0.1",
"gulp-format-md": "^2.0.0",
"mocha": "^9.1.1"
},
"keywords": [
"@babel",
"@babel/parser",
"6to5",
"abstract",
"analysis",
"ast",
"babel",
"clause",
"compiler",
"context",
"context awareness",
"ecma",
"ecmascript",
"es6",
"esprima",
"estree",
"eval",
"evaluate",
"expr-eval",
"expression",
"function",
"invoke",
"javascript",
"js",
"match",
"math",
"object",
"operator",
"parse",
"parser",
"parsing",
"run",
"safe",
"safe-eval",
"static",
"syntax",
"tc39",
"transpile",
"transpiler",
"tree",
"when"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": []
},
"reflinks": [
"estree",
"eval-estree-expression"
]
}
}