-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "postfix-haskell",
"version": "0.1.5",
"description": "A very low-level functional programming language that compiles to WebAssembly",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "node build.js",
"dev": "tsc --watch",
"ppc": "NO_TSC=1 node build.js",
"start": "node --experimental-specifier-resolution=node ./dist/index.js",
"lint": "eslint . --ext .ts",
"docs": "typedoc --entryPointStrategy expand index.ts lib/* tools/*.ts --out docs && cp -r planning/implementation docs/markdown_docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvtate/postfix-haskell.git"
},
"keywords": [
"language",
"compiler",
"webassembly",
"embeddable"
],
"bin": {
"phc": "dist/index.js"
},
"author": "dvtate",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dvtate/postfix-haskell/issues"
},
"homepage": "https://github.com/dvtate/postfix-haskell#readme",
"dependencies": {
"binaryen": "^116.0.0",
"wabt": "^1.0.32",
"yargs": "^17.6.0"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"typedoc": "^0.22.18",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.7.4"
}
}