forked from kisonecat/web2js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.54 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
{
"name": "web2js",
"version": "1.0.0",
"description": "Convert \"Pascal\" output of WEB into JavaScript",
"author": "Jim Fowler",
"contributors": [
"Glenn Rice"
],
"license": "GPL-3.0",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "node spec/run-tests.js",
"build:parser": "jison parser.jison",
"build:tie": "tie -m tex.web texk/tex.web $(cat changes/change-order)",
"build:tangle": "tangle -underline tex.web",
"build:compile": "node compile.js tex.p out.wasm",
"build:wasm": "npm run build:tie && npm run build:tangle && npm run build:compile",
"build:asyncify-wasm": "wasm-opt --asyncify --pass-arg=asyncify-ignore-indirect [email protected],library.getfilesize -O4 out.wasm -o tex.wasm",
"build:initex": "node initex.js",
"build": "npm run build:parser && npm run build:wasm && npm run build:asyncify-wasm && npm run build:initex"
},
"dependencies": {
"binaryen": "^99.0.0",
"flex-js": "^1.0.4",
"jison": "^0.4.18",
"node-kpathsea": "github:kisonecat/node-kpathsea"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"colors": "^1.4.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^11.0.0",
"log-symbols": "^2.2.0",
"prettier": "^3.4.2"
}
}