-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 958 Bytes
/
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
{
"name": "yzhanjsinterpreter",
"version": "1.0.2",
"description": "A JavaScript Interpreter Using JS itself. JavaScript 解释器,包含词法分析、语法解析和执行",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mantoufan/yzhanJSInterpreter.git"
},
"keywords": [
"interpreter",
"syntax-parser",
"lexical-analyzer",
"executor",
"词法分析",
"语法解析",
"执行器"
],
"author": "Shon Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/mantoufan/yzhanJSInterpreter/issues"
},
"homepage": "https://github.com/mantoufan/yzhanJSInterpreter#readme",
"devDependencies": {
"jest": "^29.5.0",
"swc-loader": "^0.2.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}