-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 KB
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": "lde",
"version": "0.1.0",
"description": "Lurch Deductive Engine (LDE)",
"type": "module",
"directories": {
"doc": "docs",
"test": "tests"
},
"devDependencies": {
"coffeescript": "^2.7.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"jsdoc": "^3.6.7",
"mocha": "^10.0.0",
"puppeteer": "^24.22.3",
"tidy-jsdoc": "^1.4.1"
},
"scripts": {
"test": "node src/database/generate.js && node --trace-warnings tests/all-in-puppeteer.js",
"docs": "rm -f tutorials/output/*.md && node scripts/pre-docs.js && rm -rf docs && jsdoc src/* -d docs -R doc-main.md -c jsdoc-conf.json -u tutorials/output/ && node scripts/post-docs.js",
"build-db": "node src/database/generate.js",
"show-docs": "open docs/index.html",
"test-server": "node src/database/generate.js && node tests/test-server.cjs",
"lode": "node scripts/lode.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lurchmath/lde.git"
},
"author": "Nathan Carter (ncarter@bentley.edu)",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/lurchmath/lde/issues"
},
"homepage": "https://github.com/lurchmath/lde#readme",
"dependencies": {
"algebrite": "^1.4.0",
"chalk": "^5.0.1"
}
}