-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 898 Bytes
/
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
{
"name": "infernal-engine",
"version": "1.1.2",
"description": "Javascript Inference Engine",
"keywords": [
"inference",
"engine",
"expert",
"system",
"artificial",
"intelligence",
"ai",
"forward-chaining"
],
"license": "MIT",
"author": "Jean-Philippe Gravel <[email protected]>",
"main": "lib/index.js",
"homepage": "https://formix.github.io/infernal-engine/",
"bugs": "https://github.com/formix/infernal-engine/issues",
"repository": {
"type": "git",
"url": "https://github.com/formix/infernal-engine.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/_mocha",
"dist": "webpack",
"doc": "jsdoc -c ./jsdoc/conf.json -r ./lib ./README.md -d ./../infernal-engine-pages"
},
"devDependencies": {
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}