-
Notifications
You must be signed in to change notification settings - Fork 366
/
package.json
37 lines (37 loc) · 967 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
36
37
{
"name": "neurojs",
"version": "2.0.0",
"description": "A modular and modern deep-learning library for JavaScript designed to solve supervised and unsupervised problems.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com:janhuenermann/neurojs.git"
},
"directories": {
"example": "examples"
},
"scripts": {
"start": "webpack-dev-server --inline --progress",
"build": "webpack"
},
"keywords": [
"deep-learning",
"neural-network",
"reinforcement-learning",
"deep-q-learning"
],
"author": {
"name": "Jan Hünermann",
"url": "http://janhuenermann.com/"
},
"license": "MIT",
"devDependencies": {
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"fsevents": "1.2.9"
},
"dependencies": {
"colors": "^1.4.0"
}
}