-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "hxs",
"version": "0.48.0",
"description": "A simple programming language written in JavaScript.",
"module": "./dist/hxs.min.js",
"main": "./dist/hxs.umd.min.js",
"types": "./index.d.ts",
"bin": "./cli/index.js",
"author": "3h",
"license": "MIT",
"scripts": {
"prebuild": "tsc",
"build": "rollup -c",
"postbuild": "terser dist/hxs.js --config-file terser.json --module -o dist/hxs.min.js && terser dist/hxs.umd.js --config-file terser.json -o dist/hxs.umd.min.js && node stat",
"test": "node ./test/index.js",
"repl": "node ./cli/index.js repl -m",
"help": "node ./cli/index.js --help"
},
"repository": "huang2002/hxs",
"keywords": [
"exp",
"expression",
"interpreter",
"3h"
],
"files": [
"dist",
"cli",
"types",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-node-resolve": "^13.0.4",
"3h-ast": "^0.14.0",
"3h-test": "^0.7.0",
"rollup": "^2.38.5",
"terser": "^5.5.1",
"typescript": "^4.7.4"
},
"dependencies": {
"3h-cli": "^3.0.0"
}
}