-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "@final-hill/knowledge-core",
"version": "0.1.0",
"description": "Knowledge base and associated kanren implementation",
"type": "module",
"scripts": {
"prebuild": "npm run lint",
"build": "webpack",
"lint": "eslint src/ --ext .mts --fix",
"pretest": "tsc --noEmit",
"test": "glob -c \"node --no-warnings --import tsx --test\" \"./src/**/*.test.mts\""
},
"keywords": [
"requirements",
"knowledge-base",
"kanren"
],
"author": "Michael L Haufe <michael.haufe@final-hill.com> (https://final-hill.com)",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-webpack-plugin": "^4.0.1",
"glob": "^10.3.10",
"ts-loader": "^9.5.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"core-js": "^3.33.1"
}
}