-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "al3x",
"version": "0.4.0",
"description": "Behavior based preference learning algorithm, based on pre-tagged images.",
"main": "lib/network.js",
"scripts": {
"test": "export NODE_ENV=test; nyc --reporter=text-summary --reporter=lcov mocha --recursive",
"lint": "eslint .",
"document": "documentation build lib/network.js -f md > DOCUMENTATION.md"
},
"repository": {
"type": "git",
"url": "https://github.com/maxine-red/al3x.git"
},
"keywords": [
"machine_learning",
"preference_learning",
"reinforcement_learning",
"ai"
],
"homepage": "https://github.com/maxine-red/al3x",
"bugs": {
"url": "https://github.com/maxine-red/al3x/issues"
},
"author": "Maxine Michalski",
"license": "GPL-3.0-or-later",
"engine": {
"node": ">= 8.0.0"
},
"dependencies": {
"config": "^3.0.1",
"random": "^2.0.13"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-arrays": "^2.0.0",
"chai-as-promised": "^7.1.1",
"documentation": "^9.1.1",
"eslint": "^5.11.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}