-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 872 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
{
"name": "neural-network-node",
"version": "1.4.7",
"description": "A simple neural network coded from scratch with no external modules. Lets you train your own neural network in a simple and easy to learn way.",
"main": "src/npm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"neural",
"network",
"js",
"node",
"javascript",
"machine",
"learning",
"supervised",
"data"
],
"author": "SatvikVejendla",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/SatvikVejendla/Neural-Network-Node.git"
},
"bugs": {
"url": "https://github.com/SatvikVejendla/Neural-Network-Node/issues"
},
"homepage": "https://github.com/SatvikVejendla/Neural-Network-Node#readme",
"dependencies": {
"numpy-matrix-js": "^1.1.4"
}
}