-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "ludit",
"version": "0.3.1",
"description": "Ludit is an interpreter for Ludi, a language meant to express and compute boolean algebra in the CLI.",
"main": "./bin/API/index.js",
"scripts": {
"build": "tsc -p ./src/",
"build-test": "tsc -p ./tsconfig.unit.json",
"doc": "typedoc ./src --out ./docs --entryPoints ./src/ludit/Core.ts ./src/ludit/Frontend.ts ./src/ludit/types/index.ts --entryPointStrategy expand",
"lint": "eslint ./src --ext .ts --fix",
"test": "mocha ./test/bin/test --reporter ./test/bin/test/reporter.js",
"start": "node ./bin/index.js"
},
"keywords": [
"logic",
"gates",
"table",
"boolean",
"algebra"
],
"repository": {
"url": "https://github.com/matiasvlevi/ludit.git",
"type": "git"
},
"author": "Matias Vazquez-Levi",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"mocha": "^10.0.0",
"typedoc": "^0.23.14",
"typedoc-custom-theme-demo": "file:../typedoc-demo",
"typedoc-theme-hierarchy": "^3.0.0"
},
"bin": {
"ludit": "./bin/index.js"
},
"preferGlobal": "true"
}